結果

問題 No.1083 余りの余り
ユーザー keymoonkeymoon
提出日時 2024-12-16 21:54:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 1,473,864 KB
最終ジャッジ日時 2024-12-16 21:55:08
合計ジャッジ時間 24,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
testcase_05 MLE -
testcase_06 WA -
testcase_07 OLE -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 OLE -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 WA -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 WA -
testcase_28 MLE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
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(seq))
print(allseq)
anc = []
ini = int(inp1[1])    
for s in allseq:
    a = ini 
    for q in s:
        a = a % q
    anc.append(a)
print(max(anc))
0