/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Wrong Answer 5ms 4.27 MiB
#2 Runtime Error 2ms 580.0 KiB
#3 Runtime Error 2ms 580.0 KiB
#4 Runtime Error 2ms 532.0 KiB
#5 Runtime Error 2ms 552.0 KiB
#6 Runtime Error 2ms 576.0 KiB
#7 Runtime Error 2ms 580.0 KiB
#8 Runtime Error 5ms 4.465 MiB
#9 Runtime Error 5ms 4.461 MiB
#10 Runtime Error 2ms 548.0 KiB
#11 Runtime Error 5ms 4.473 MiB
#12 Runtime Error 5ms 4.492 MiB
#13 Wrong Answer 5ms 4.402 MiB
#14 Wrong Answer 5ms 4.27 MiB
#15 Runtime Error 2ms 580.0 KiB

Code

// I AM A MUSLIM

#include "bits/stdc++.h"

#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")

#define fastIO std::ios::sync_with_stdio(0);std::cin.tie(0)
#define ll long long int
#define flush fflush(stdout)
#define bl printf("\n")
#define yn(a, b) printf("%s\n", a >= b ? "Yes":"No")
// #define int ll

using pii = std::pair<int,int>;

const int MOD = 1000000007;
// const int MOD = 998244353;
const int mxN = 101;

int N, a[mxN], dp[mxN][mxN][mxN];

int fn(int at, int evC, int evG, int odG) {
    if (at == N) {
        if (N&1) return ((evC+1) == (N-evC)) ? evG+odG : 0;
        return (evC == (N-evC)) ? evG+odG : 0;
    }
    if (dp[at][evC][evG] != -1) return dp[at][evC][evG];
    int op1 = fn(at+1, evC+1, std::__gcd(evG,a[at]), odG);
    int op2 = fn(at+1, evC, evG, std::__gcd(odG,a[at]));
    return dp[at][evC][evG] = std::max(op1, op2);
}

signed main() {
    // fastIO;
    int testCases=1;
    scanf("%d",&testCases);
    // std::cin>>testCases;
    
    for (int TC = 1; TC <= testCases; TC++) {
        scanf("%d",&N);
        for (int i = 0; i < N; i++) {
            scanf("%d",&a[i]);
        }
        memset(dp,-1,sizeof(dp));
        printf("%d\n", fn(0,0,0,0));
        
    }
    
    return 0;
}

/*

*/

Information

Submit By
Type
Submission
Problem
P1083 Number concatenation
Contest
Bangladesh 2.0
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 16:10:39
Judged At
2024-10-03 13:28:18
Judged By
Score
0
Total Time
5ms
Peak Memory
4.492 MiB