結果

問題 No.136 Yet Another GCD Problem
ユーザー mai
提出日時 2017-05-21 13:31:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 158 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-19 08:06:22
合計ジャッジ時間 2,873 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

# Python3勉強中
import math

n,k = list(map(int,input().split()))

r = 0
for x in range(1,int(n/2)+1):
    y = n - x
    r = max(r,math.gcd(x,y))

print(r)
0