結果

問題 No.1083 余りの余り
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-06-19 21:45:58
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 1,229 ms
コンパイル使用メモリ 150,152 KB
実行使用メモリ 7,256 KB
最終ジャッジ日時 2023-09-16 13:48:33
合計ジャッジ時間 2,446 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 WA -
testcase_19 AC 4 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 10 ms
7,144 KB
testcase_24 WA -
testcase_25 AC 10 ms
7,208 KB
testcase_26 WA -
testcase_27 AC 1 ms
4,380 KB
testcase_28 WA -
testcase_29 AC 1 ms
4,384 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 1 ms
4,380 KB
testcase_32 AC 1 ms
4,376 KB
testcase_33 AC 10 ms
7,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.06.19 21:45:56
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n, k;
    cin >> n >> k;
    vector< int > a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    sort(a.rbegin(), a.rend());
    vector< int > dp(1 << n);
    dp[0] = k;
    int ans = 0;
    for (int i = 1; i < 1 << n; i++) {
        for (int j = 0; j < n; j++) {
            if (i & (1 << j)) {
                dp[i] = dp[i & (i - 1)] % a[n-1-j];
                break;
            }
        }
    }
    for (int i = 1; i < n; i++) {
        int p = 1 << i;
        ans = max(ans, dp[p - 1]);
    }
    cout << ans << endl;
    return 0;
}
0