結果

問題 No.1083 余りの余り
ユーザー roarisroaris
提出日時 2020-06-20 01:15:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 3,000 ms
コード長 289 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 76,092 KB
最終ジャッジ日時 2024-07-03 16:26:05
合計ジャッジ時間 4,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,184 KB
testcase_01 AC 36 ms
52,976 KB
testcase_02 AC 36 ms
53,052 KB
testcase_03 AC 36 ms
51,884 KB
testcase_04 AC 44 ms
61,368 KB
testcase_05 AC 83 ms
67,092 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 42 ms
59,636 KB
testcase_08 AC 36 ms
52,948 KB
testcase_09 AC 40 ms
53,232 KB
testcase_10 AC 37 ms
52,820 KB
testcase_11 AC 39 ms
59,832 KB
testcase_12 AC 36 ms
53,532 KB
testcase_13 AC 36 ms
52,788 KB
testcase_14 AC 36 ms
52,456 KB
testcase_15 AC 38 ms
52,800 KB
testcase_16 AC 37 ms
53,692 KB
testcase_17 AC 37 ms
52,416 KB
testcase_18 AC 126 ms
73,508 KB
testcase_19 AC 79 ms
67,444 KB
testcase_20 AC 44 ms
61,792 KB
testcase_21 AC 47 ms
61,688 KB
testcase_22 AC 35 ms
52,372 KB
testcase_23 AC 275 ms
75,772 KB
testcase_24 AC 277 ms
75,840 KB
testcase_25 AC 272 ms
76,092 KB
testcase_26 AC 273 ms
75,776 KB
testcase_27 AC 35 ms
52,968 KB
testcase_28 AC 278 ms
75,692 KB
testcase_29 AC 35 ms
52,484 KB
testcase_30 AC 36 ms
52,968 KB
testcase_31 AC 36 ms
53,136 KB
testcase_32 AC 35 ms
52,980 KB
testcase_33 AC 275 ms
75,768 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<<N):
    if not (S>>(N-1))&1:
        continue
    
    now = K
    
    for i in range(N):
        if (S>>i)&1:
            now %= A[i]

    ans = max(ans, now)

print(ans)
0