結果

問題 No.1083 余りの余り
ユーザー KKT89KKT89
提出日時 2020-06-19 21:48:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 811 bytes
コンパイル時間 1,208 ms
コンパイル使用メモリ 111,844 KB
実行使用メモリ 726,860 KB
最終ジャッジ日時 2024-07-03 14:16:40
合計ジャッジ時間 12,958 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
59,592 KB
testcase_01 AC 20 ms
52,684 KB
testcase_02 AC 19 ms
52,716 KB
testcase_03 AC 18 ms
52,472 KB
testcase_04 AC 21 ms
52,948 KB
testcase_05 AC 1,294 ms
187,444 KB
testcase_06 AC 19 ms
52,576 KB
testcase_07 AC 19 ms
52,648 KB
testcase_08 AC 19 ms
52,592 KB
testcase_09 AC 19 ms
52,644 KB
testcase_10 AC 19 ms
52,480 KB
testcase_11 AC 20 ms
52,752 KB
testcase_12 AC 19 ms
52,588 KB
testcase_13 AC 19 ms
52,556 KB
testcase_14 AC 19 ms
52,700 KB
testcase_15 AC 19 ms
52,692 KB
testcase_16 AC 19 ms
52,592 KB
testcase_17 AC 20 ms
52,544 KB
testcase_18 AC 1,483 ms
210,868 KB
testcase_19 AC 306 ms
91,068 KB
testcase_20 AC 25 ms
53,480 KB
testcase_21 AC 29 ms
54,008 KB
testcase_22 AC 19 ms
52,640 KB
testcase_23 TLE -
testcase_24 MLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <set>
#include <map>
#include <math.h>
#include <deque>
#include <cstdio>
#include <queue>
#include <numeric>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

set<int> dp[1<<20];

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n; cin >> n;
    ll k; cin >> k;
    vector<ll> a(n);
    for(int i=0;i<n;i++){
        cin >> a[i];
    }
    sort(a.begin(), a.end());
    a.erase(unique(a.begin(), a.end()),a.end());
    dp[0].insert(k);
    for(int i=0;i<(1<<n);i++){
        for(int j=0;j<n;j++){
            if(i&(1<<j))continue;
            for(auto s:dp[i]){
                dp[i+(1<<j)].insert(s%a[j]);
            }
        }
    }
    cout << *dp[(1<<n)-1].rbegin() << endl;
}
0