結果

問題 No.358 も~っと!門松列
ユーザー ああいいああいい
提出日時 2022-03-17 21:30:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 346 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-10-01 20:30:04
合計ジャッジ時間 1,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,824 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 46 ms
62,592 KB
testcase_03 AC 41 ms
59,648 KB
testcase_04 AC 47 ms
62,464 KB
testcase_05 AC 46 ms
62,336 KB
testcase_06 AC 41 ms
59,520 KB
testcase_07 AC 45 ms
61,568 KB
testcase_08 AC 41 ms
59,520 KB
testcase_09 AC 43 ms
61,440 KB
testcase_10 AC 42 ms
59,392 KB
testcase_11 AC 46 ms
61,952 KB
testcase_12 AC 45 ms
61,056 KB
testcase_13 AC 36 ms
51,584 KB
testcase_14 AC 47 ms
62,720 KB
testcase_15 AC 36 ms
52,224 KB
testcase_16 AC 35 ms
52,224 KB
testcase_17 AC 35 ms
52,480 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 35 ms
51,840 KB
testcase_20 AC 47 ms
62,848 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 45 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = list(map(int,input().split()))

def calc(p):
    s = [i % p for i in l]
    ss =set(s)
    if len(ss) < 3:return False
    if max(s) == s[1] or min(s) == s[1]:
        return True
    else:
        return False

ans = 0
if calc(1001):
    print('INF')
else:
    for p in range(1,1001):
        if calc(p):
            ans += 1
    print(ans)
0