結果

問題 No.136 Yet Another GCD Problem
ユーザー yaoshimaxyaoshimax
提出日時 2015-04-30 15:14:42
言語 Python2
(2.7.18)
結果
AC  
実行時間 24 ms / 5,000 ms
コード長 113 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 8,876 KB
最終ジャッジ日時 2023-09-19 04:38:44
合計ジャッジ時間 2,421 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
5,900 KB
testcase_01 AC 11 ms
5,828 KB
testcase_02 AC 11 ms
5,940 KB
testcase_03 AC 19 ms
7,632 KB
testcase_04 AC 23 ms
8,592 KB
testcase_05 AC 14 ms
6,476 KB
testcase_06 AC 14 ms
6,568 KB
testcase_07 AC 15 ms
6,480 KB
testcase_08 AC 18 ms
7,272 KB
testcase_09 AC 12 ms
6,056 KB
testcase_10 AC 18 ms
7,396 KB
testcase_11 AC 21 ms
8,144 KB
testcase_12 AC 11 ms
5,900 KB
testcase_13 AC 17 ms
7,008 KB
testcase_14 AC 24 ms
8,876 KB
testcase_15 AC 23 ms
8,672 KB
testcase_16 AC 22 ms
8,320 KB
testcase_17 AC 20 ms
7,792 KB
testcase_18 AC 11 ms
6,040 KB
testcase_19 AC 22 ms
8,000 KB
testcase_20 AC 19 ms
7,192 KB
testcase_21 AC 13 ms
5,972 KB
testcase_22 AC 11 ms
5,900 KB
testcase_23 AC 11 ms
6,060 KB
testcase_24 AC 12 ms
5,816 KB
testcase_25 AC 11 ms
5,840 KB
testcase_26 AC 11 ms
5,840 KB
testcase_27 AC 21 ms
8,152 KB
testcase_28 AC 18 ms
7,208 KB
testcase_29 AC 12 ms
6,124 KB
testcase_30 AC 11 ms
5,920 KB
testcase_31 AC 11 ms
5,836 KB
testcase_32 AC 11 ms
5,940 KB
testcase_33 AC 12 ms
5,916 KB
testcase_34 AC 16 ms
6,724 KB
testcase_35 AC 18 ms
7,256 KB
testcase_36 AC 14 ms
6,260 KB
testcase_37 AC 22 ms
8,444 KB
testcase_38 AC 11 ms
5,880 KB
testcase_39 AC 11 ms
5,964 KB
testcase_40 AC 11 ms
5,916 KB
testcase_41 AC 11 ms
5,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,raw_input().split())
ans=1
for i in range(2,N):
    if N%i==0:
        ans=max(ans,i)
print ans
    
0