結果

問題 No.136 Yet Another GCD Problem
ユーザー roiti46roiti46
提出日時 2015-01-25 23:47:43
言語 Python2
(2.7.18)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 214 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-06-23 03:01:14
合計ジャッジ時間 4,007 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,raw_input().split())
ans = 1
for k in range(2,K+1):
    n = N
    cnt = 0
    if n < k: continue
    while n >= k:
        n -= k
        cnt += 1
    if n%cnt == 0: ans = max(ans, cnt)
print ans
    
0