結果

問題 No.1083 余りの余り
ユーザー roarisroaris
提出日時 2020-06-20 01:06:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 3,000 ms
コード長 343 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 76,212 KB
最終ジャッジ日時 2024-07-03 16:25:20
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,036 KB
testcase_01 AC 39 ms
52,680 KB
testcase_02 AC 43 ms
60,172 KB
testcase_03 AC 36 ms
53,344 KB
testcase_04 AC 48 ms
62,596 KB
testcase_05 AC 138 ms
76,124 KB
testcase_06 AC 36 ms
53,112 KB
testcase_07 AC 43 ms
60,188 KB
testcase_08 AC 42 ms
61,496 KB
testcase_09 AC 36 ms
53,552 KB
testcase_10 AC 41 ms
60,956 KB
testcase_11 AC 42 ms
61,940 KB
testcase_12 AC 37 ms
53,656 KB
testcase_13 AC 36 ms
53,032 KB
testcase_14 AC 36 ms
52,556 KB
testcase_15 AC 37 ms
52,868 KB
testcase_16 AC 35 ms
53,332 KB
testcase_17 AC 35 ms
52,128 KB
testcase_18 AC 225 ms
75,900 KB
testcase_19 AC 137 ms
76,212 KB
testcase_20 AC 48 ms
63,516 KB
testcase_21 AC 58 ms
65,856 KB
testcase_22 AC 35 ms
52,388 KB
testcase_23 AC 423 ms
75,900 KB
testcase_24 AC 422 ms
75,920 KB
testcase_25 AC 424 ms
76,152 KB
testcase_26 AC 424 ms
75,952 KB
testcase_27 AC 41 ms
60,140 KB
testcase_28 AC 426 ms
76,060 KB
testcase_29 AC 36 ms
52,580 KB
testcase_30 AC 36 ms
52,204 KB
testcase_31 AC 36 ms
53,572 KB
testcase_32 AC 36 ms
52,948 KB
testcase_33 AC 423 ms
76,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.sort(reverse=True)
ans = 0

for S in range(1, 1<<N):
    now = K
    right = -1
    
    for i in range(N):
        if (S>>i)&1:
            now %= A[i]
            right = i
    
    for i in range(right+1, N):
        now %= A[i]
    
    ans = max(ans, now)

print(ans)
0