結果

問題 No.415 ぴょん
ユーザー yansi819yansi819
提出日時 2024-05-19 12:01:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 79 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 53,832 KB
最終ジャッジ日時 2024-05-19 12:01:12
合計ジャッジ時間 2,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,704 KB
testcase_01 AC 34 ms
53,608 KB
testcase_02 AC 33 ms
52,572 KB
testcase_03 AC 32 ms
52,064 KB
testcase_04 AC 31 ms
53,108 KB
testcase_05 AC 34 ms
52,840 KB
testcase_06 AC 33 ms
52,452 KB
testcase_07 AC 35 ms
52,648 KB
testcase_08 AC 33 ms
52,824 KB
testcase_09 AC 31 ms
53,832 KB
testcase_10 AC 30 ms
53,328 KB
testcase_11 AC 32 ms
52,332 KB
testcase_12 AC 32 ms
52,536 KB
testcase_13 AC 42 ms
53,464 KB
testcase_14 AC 32 ms
51,948 KB
testcase_15 AC 33 ms
52,948 KB
testcase_16 AC 32 ms
52,424 KB
testcase_17 AC 33 ms
52,004 KB
testcase_18 AC 37 ms
52,388 KB
testcase_19 AC 35 ms
52,484 KB
testcase_20 AC 34 ms
52,904 KB
testcase_21 AC 34 ms
52,368 KB
testcase_22 AC 34 ms
52,916 KB
testcase_23 AC 34 ms
51,808 KB
testcase_24 AC 35 ms
52,468 KB
testcase_25 AC 34 ms
52,700 KB
testcase_26 AC 33 ms
52,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N, D = map(int, input().split())
print(N // gcd(N, D) - 1)
0