結果

問題 No.136 Yet Another GCD Problem
ユーザー 👑 Kazun
提出日時 2020-10-14 04:22:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 112 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 57,728 KB
最終ジャッジ日時 2024-07-20 18:58:33
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())

for x in range(K,N+1):
    if N%x==0:
        print(N//x)
        exit()
print(1)
0