結果

問題 No.1083 余りの余り
ユーザー komkompikomkompi
提出日時 2023-11-04 14:05:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 391 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 307,296 KB
最終ジャッジ日時 2024-09-25 22:01:56
合計ジャッジ時間 12,539 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 47 ms
58,624 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 53 ms
61,568 KB
testcase_05 WA -
testcase_06 AC 42 ms
51,712 KB
testcase_07 WA -
testcase_08 AC 47 ms
58,240 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 46 ms
58,240 KB
testcase_11 AC 52 ms
60,928 KB
testcase_12 AC 42 ms
52,224 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 41 ms
51,712 KB
testcase_15 AC 41 ms
52,224 KB
testcase_16 AC 41 ms
51,840 KB
testcase_17 AC 41 ms
51,840 KB
testcase_18 AC 663 ms
186,684 KB
testcase_19 AC 346 ms
127,144 KB
testcase_20 AC 55 ms
62,720 KB
testcase_21 AC 78 ms
73,088 KB
testcase_22 AC 40 ms
51,584 KB
testcase_23 AC 1,485 ms
306,912 KB
testcase_24 WA -
testcase_25 AC 1,471 ms
306,784 KB
testcase_26 WA -
testcase_27 AC 45 ms
58,496 KB
testcase_28 WA -
testcase_29 AC 39 ms
51,584 KB
testcase_30 AC 39 ms
51,840 KB
testcase_31 AC 40 ms
51,840 KB
testcase_32 AC 40 ms
51,968 KB
testcase_33 AC 1,466 ms
306,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import itertools

N,K=map(int,input().split())
A=list(map(int,input().split()))

patterns = list(itertools.product([0, 1], repeat=N))

ans=0
for pattern in patterns:
    """
    1のやつは先に
    """
    x=K
    for a,bit in zip(A,pattern):
        if bit:
            x%=a
        
    for a in A:
        x%=a
        
    ans=max(ans,x)

print(ans)
0