結果

問題 No.358 も~っと!門松列
ユーザー 👑 KazunKazun
提出日時 2021-07-09 01:00:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 274 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 53,776 KB
最終ジャッジ日時 2024-07-01 13:47:53
合計ジャッジ時間 1,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,776 KB
testcase_01 AC 38 ms
53,004 KB
testcase_02 AC 37 ms
53,128 KB
testcase_03 AC 38 ms
53,448 KB
testcase_04 AC 39 ms
52,872 KB
testcase_05 AC 39 ms
52,568 KB
testcase_06 AC 39 ms
52,260 KB
testcase_07 AC 39 ms
53,432 KB
testcase_08 AC 38 ms
53,564 KB
testcase_09 AC 39 ms
53,624 KB
testcase_10 AC 39 ms
52,828 KB
testcase_11 AC 38 ms
52,208 KB
testcase_12 AC 38 ms
53,540 KB
testcase_13 AC 38 ms
52,376 KB
testcase_14 AC 39 ms
52,768 KB
testcase_15 AC 37 ms
52,440 KB
testcase_16 AC 38 ms
52,184 KB
testcase_17 AC 37 ms
52,404 KB
testcase_18 AC 37 ms
52,212 KB
testcase_19 AC 38 ms
51,756 KB
testcase_20 AC 39 ms
53,628 KB
testcase_21 AC 38 ms
52,940 KB
testcase_22 AC 39 ms
53,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_kadomatsu(a,b,c):
    if a==b or b==c or c==a:
        return False
    return a<b>c or a>b<c

A,B,C=map(int,input().split())
if is_kadomatsu(A,B,C):
    exit(print("INF"))

X=0
for p in range(1,max(A,B,C)+2):
    X+=1 if is_kadomatsu(A%p, B%p, C%p) else 0

print(X)
0