結果

問題 No.136 Yet Another GCD Problem
ユーザー convexineqconvexineq
提出日時 2020-12-08 03:47:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 87 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 67,008 KB
最終ジャッジ日時 2024-09-17 14:19:56
合計ジャッジ時間 2,927 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,252 KB
testcase_01 AC 31 ms
52,108 KB
testcase_02 AC 31 ms
52,904 KB
testcase_03 AC 36 ms
57,212 KB
testcase_04 AC 34 ms
58,140 KB
testcase_05 AC 33 ms
57,476 KB
testcase_06 AC 33 ms
58,140 KB
testcase_07 AC 34 ms
57,664 KB
testcase_08 AC 33 ms
57,760 KB
testcase_09 AC 33 ms
57,312 KB
testcase_10 AC 33 ms
57,616 KB
testcase_11 AC 34 ms
57,536 KB
testcase_12 AC 31 ms
52,684 KB
testcase_13 AC 37 ms
57,560 KB
testcase_14 AC 37 ms
58,352 KB
testcase_15 AC 37 ms
59,192 KB
testcase_16 AC 36 ms
57,244 KB
testcase_17 AC 36 ms
57,264 KB
testcase_18 AC 33 ms
52,852 KB
testcase_19 AC 37 ms
57,584 KB
testcase_20 AC 34 ms
58,884 KB
testcase_21 AC 35 ms
58,132 KB
testcase_22 AC 32 ms
51,868 KB
testcase_23 AC 33 ms
53,276 KB
testcase_24 AC 33 ms
52,132 KB
testcase_25 AC 33 ms
52,572 KB
testcase_26 AC 32 ms
52,812 KB
testcase_27 AC 35 ms
57,896 KB
testcase_28 AC 35 ms
57,268 KB
testcase_29 AC 34 ms
57,596 KB
testcase_30 AC 31 ms
53,348 KB
testcase_31 AC 32 ms
52,040 KB
testcase_32 AC 31 ms
53,192 KB
testcase_33 AC 33 ms
52,308 KB
testcase_34 AC 36 ms
57,248 KB
testcase_35 AC 35 ms
57,188 KB
testcase_36 AC 34 ms
57,492 KB
testcase_37 AC 35 ms
59,000 KB
testcase_38 RE -
testcase_39 AC 33 ms
52,920 KB
testcase_40 RE -
testcase_41 AC 33 ms
52,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
for i in range(1,n-1):
    if n%i==0: ans = i
print(ans)
0