結果

問題 No.1083 余りの余り
ユーザー keymoonkeymoon
提出日時 2024-12-16 22:12:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 307 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 1,380,884 KB
最終ジャッジ日時 2024-12-16 22:13:09
合計ジャッジ時間 23,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 24 ms
10,880 KB
testcase_02 AC 88 ms
15,872 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 TLE -
testcase_05 MLE -
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 794 ms
67,968 KB
testcase_08 AC 96 ms
17,152 KB
testcase_09 AC 33 ms
11,392 KB
testcase_10 AC 93 ms
17,152 KB
testcase_11 AC 767 ms
67,968 KB
testcase_12 AC 33 ms
11,520 KB
testcase_13 AC 33 ms
11,520 KB
testcase_14 AC 24 ms
10,752 KB
testcase_15 AC 26 ms
10,880 KB
testcase_16 AC 24 ms
10,880 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 28 ms
10,752 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 AC 96 ms
16,000 KB
testcase_28 MLE -
testcase_29 AC 28 ms
10,752 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 27 ms
10,880 KB
testcase_32 AC 28 ms
10,752 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

inp1 = input().split()
inp2 = input().split()

seq= []
for s in inp2:
    seq.append(int(s))

allseq = list(itertools.permutations(range(int(inp1[0]))))


anc = []
ini = int(inp1[1])    
for s in allseq:
    a = ini 
    for q in s:
        a = a % seq[q]
    anc.append(a)
print(max(anc))
0