結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,940 KB
testcase_01 AC 37 ms
53,280 KB
testcase_02 AC 32 ms
52,724 KB
testcase_03 AC 35 ms
58,684 KB
testcase_04 AC 37 ms
60,108 KB
testcase_05 AC 38 ms
60,732 KB
testcase_06 AC 34 ms
59,108 KB
testcase_07 AC 35 ms
59,672 KB
testcase_08 AC 35 ms
60,340 KB
testcase_09 AC 38 ms
62,204 KB
testcase_10 AC 31 ms
52,492 KB
testcase_11 AC 30 ms
51,964 KB
testcase_12 AC 32 ms
52,724 KB
testcase_13 AC 37 ms
58,136 KB
testcase_14 AC 38 ms
61,392 KB
testcase_15 AC 41 ms
62,848 KB
testcase_16 AC 38 ms
61,364 KB
testcase_17 AC 35 ms
59,280 KB
testcase_18 AC 39 ms
62,292 KB
testcase_19 AC 38 ms
60,272 KB
testcase_20 AC 39 ms
61,536 KB
testcase_21 AC 39 ms
61,112 KB
testcase_22 AC 39 ms
60,900 KB
権限があれば一括ダウンロードができます

ソースコード

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(b) != len(set(b)):
        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