結果

問題 No.1083 余りの余り
ユーザー yel_owyel_ow
提出日時 2024-11-30 09:18:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 3,542 ms
コンパイル使用メモリ 260,816 KB
実行使用メモリ 58,400 KB
最終ジャッジ日時 2024-11-30 09:19:35
合計ジャッジ時間 40,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
56,612 KB
testcase_02 AC 3 ms
13,636 KB
testcase_03 AC 2 ms
12,068 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 4 ms
12,064 KB
testcase_08 AC 3 ms
13,644 KB
testcase_09 AC 2 ms
12,068 KB
testcase_10 AC 3 ms
13,636 KB
testcase_11 AC 5 ms
12,072 KB
testcase_12 AC 2 ms
13,636 KB
testcase_13 AC 3 ms
12,068 KB
testcase_14 AC 2 ms
52,392 KB
testcase_15 AC 2 ms
12,068 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 63 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 3 ms
5,248 KB
testcase_28 TLE -
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <monsterenergy>
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
const int MAX = 1e9;
const int MIN = -1*1e9;
const ll MAXLL = 1e18;
const ll MINLL = -1*1e18;
ll N,Ans = MIN;
vector<ll> V(21);
map<pair<int,vector<bool>>,bool> F;

void DFS(vector<bool> A, int last, ll K)
{
    if(F[{last,A}]) return;
    F[{last,A}] = true;
    if(K <= Ans) return;
    bool f = false;
    for(int i = 0; i < N; i++)
    {
        if(A[i]) continue;
        f = true;
        A[i] = true;
        DFS(A,i,K%V[i]);
        A[i] = false;
    }
    if(!f)
    {
        Ans = max(Ans,K);
        return;
    }
    return;
}

int main()
{
    ll K; cin >> N >> K;
    for(int i = 0; i < N; i++) cin >> V[i];
    vector<bool> A(21);
    DFS(A,-1,K);
    cout << Ans << endl;
    return 0;
}
0