結果

問題 No.312 置換処理
ユーザー tjaketjake
提出日時 2015-12-05 01:26:25
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 94 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 38,124 KB
最終ジャッジ日時 2024-09-14 14:13:11
合計ジャッジ時間 2,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,208 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 48 ms
37,804 KB
testcase_06 AC 37 ms
24,684 KB
testcase_07 AC 65 ms
34,080 KB
testcase_08 AC 42 ms
32,256 KB
testcase_09 AC 26 ms
18,176 KB
testcase_10 AC 28 ms
20,264 KB
testcase_11 AC 49 ms
32,676 KB
testcase_12 AC 35 ms
24,420 KB
testcase_13 AC 46 ms
35,660 KB
testcase_14 AC 37 ms
27,104 KB
testcase_15 AC 33 ms
24,336 KB
testcase_16 AC 24 ms
17,152 KB
testcase_17 AC 40 ms
29,568 KB
testcase_18 AC 39 ms
29,880 KB
testcase_19 AC 45 ms
33,508 KB
testcase_20 AC 47 ms
36,716 KB
testcase_21 AC 49 ms
37,276 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 11 ms
6,400 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 18 ms
12,288 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 25 ms
16,256 KB
testcase_36 AC 11 ms
6,272 KB
testcase_37 AC 11 ms
6,400 KB
testcase_38 AC 11 ms
6,528 KB
testcase_39 AC 22 ms
15,616 KB
testcase_40 AC 13 ms
7,936 KB
testcase_41 AC 12 ms
6,528 KB
testcase_42 AC 13 ms
7,296 KB
testcase_43 AC 11 ms
6,272 KB
testcase_44 AC 11 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math as m
n=input()
print next(iter(i for i in range(3,int(m.sqrt(n))+1)if n%i<1))or n
0