結果

問題 No.136 Yet Another GCD Problem
ユーザー roarisroaris
提出日時 2019-08-11 16:09:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 75,860 KB
最終ジャッジ日時 2024-09-13 20:07:47
合計ジャッジ時間 3,701 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,492 KB
testcase_01 AC 38 ms
53,824 KB
testcase_02 AC 38 ms
52,604 KB
testcase_03 AC 63 ms
75,392 KB
testcase_04 AC 73 ms
75,264 KB
testcase_05 AC 55 ms
75,380 KB
testcase_06 AC 50 ms
72,872 KB
testcase_07 AC 53 ms
74,000 KB
testcase_08 AC 61 ms
75,256 KB
testcase_09 AC 45 ms
62,988 KB
testcase_10 AC 61 ms
75,860 KB
testcase_11 AC 68 ms
75,812 KB
testcase_12 AC 41 ms
58,772 KB
testcase_13 AC 59 ms
75,572 KB
testcase_14 AC 73 ms
74,884 KB
testcase_15 AC 72 ms
74,944 KB
testcase_16 AC 70 ms
75,412 KB
testcase_17 AC 67 ms
75,560 KB
testcase_18 AC 42 ms
58,612 KB
testcase_19 AC 69 ms
75,372 KB
testcase_20 AC 63 ms
75,448 KB
testcase_21 AC 45 ms
63,296 KB
testcase_22 AC 38 ms
52,684 KB
testcase_23 AC 37 ms
53,676 KB
testcase_24 AC 37 ms
52,316 KB
testcase_25 AC 37 ms
51,752 KB
testcase_26 AC 41 ms
59,264 KB
testcase_27 AC 68 ms
75,128 KB
testcase_28 AC 63 ms
75,200 KB
testcase_29 AC 45 ms
63,768 KB
testcase_30 AC 37 ms
52,348 KB
testcase_31 AC 38 ms
52,288 KB
testcase_32 AC 36 ms
52,816 KB
testcase_33 AC 38 ms
52,348 KB
testcase_34 AC 58 ms
75,396 KB
testcase_35 AC 64 ms
75,172 KB
testcase_36 AC 52 ms
72,084 KB
testcase_37 AC 71 ms
75,112 KB
testcase_38 AC 39 ms
52,832 KB
testcase_39 AC 37 ms
52,776 KB
testcase_40 AC 37 ms
52,196 KB
testcase_41 AC 38 ms
52,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    while b:
        a, b = b, a%b
    return a

N, K = map(int, input().split())
ans = -10 ** 18

for i in range(1, N):
    ans = max(ans, gcd(i, N-i))

print(ans)
0