結果

問題 No.358 も~っと!門松列
ユーザー yumechiyumechi
提出日時 2016-04-25 00:07:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 62,956 KB
最終ジャッジ日時 2024-10-04 15:39:58
合計ジャッジ時間 1,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 31 ms
53,212 KB
testcase_02 WA -
testcase_03 AC 33 ms
59,268 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 35 ms
59,372 KB
testcase_07 WA -
testcase_08 AC 36 ms
59,308 KB
testcase_09 WA -
testcase_10 AC 31 ms
53,460 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 32 ms
58,512 KB
testcase_14 WA -
testcase_15 AC 38 ms
62,736 KB
testcase_16 AC 38 ms
61,624 KB
testcase_17 AC 37 ms
59,584 KB
testcase_18 AC 38 ms
62,372 KB
testcase_19 AC 38 ms
61,016 KB
testcase_20 WA -
testcase_21 AC 36 ms
60,088 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [int(i) for i in input().split()]
res = 0
for i in range(1, max(a)+1):
    b = [e % i for e in a]
    if len(a) != len(set(a)):
        continue
    if b[1] == max(b) or b[1] == min(b):
        res += 1
b = [e % (max(a)+1) for e in a]
if len(b) == len(set(b)) and (b[1] == max(b) or b[1] == min(b)):
    print("INF")
else:
    print(res)
0