結果

問題 No.136 Yet Another GCD Problem
ユーザー threepipes_s
提出日時 2016-01-03 20:12:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 102 ms / 5,000 ms
コード長 167 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-19 10:55:33
合計ジャッジ時間 3,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
def gcd(a, b):
    if b==0: return a
    return gcd(b, a%b)
m = 0
for i in range(1, int(n/2)+1):
    m = max(m, gcd(i, n-i))
print(m)
0