結果

問題 No.415 ぴょん
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-26 03:16:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 1,021 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 54,044 KB
最終ジャッジ日時 2024-06-06 21:02:48
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,532 KB
testcase_01 AC 33 ms
52,208 KB
testcase_02 AC 32 ms
52,696 KB
testcase_03 AC 32 ms
52,552 KB
testcase_04 WA -
testcase_05 AC 33 ms
53,620 KB
testcase_06 WA -
testcase_07 AC 31 ms
53,168 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 35 ms
52,736 KB
testcase_11 WA -
testcase_12 AC 34 ms
52,940 KB
testcase_13 AC 32 ms
52,260 KB
testcase_14 AC 31 ms
52,444 KB
testcase_15 AC 34 ms
53,912 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 32 ms
52,484 KB
testcase_21 WA -
testcase_22 AC 32 ms
52,304 KB
testcase_23 WA -
testcase_24 AC 33 ms
52,660 KB
testcase_25 AC 31 ms
52,948 KB
testcase_26 AC 32 ms
52,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int,input().split())
def cal(x,y):
    if y == 0:
        return x
    return cal(y,x%y)


t=cal(n,d)

if n == d:
    print(0)
elif t == 1:
    print(n-1)
else:
    print(t-1)
0