結果

問題 No.312 置換処理
ユーザー tjaketjake
提出日時 2015-12-05 01:36:53
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 85 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 6,520 KB
実行使用メモリ 39,464 KB
最終ジャッジ日時 2023-10-12 15:27:45
合計ジャッジ時間 4,502 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
39,432 KB
testcase_01 WA -
testcase_02 AC 113 ms
39,448 KB
testcase_03 WA -
testcase_04 AC 52 ms
39,408 KB
testcase_05 AC 49 ms
39,432 KB
testcase_06 AC 52 ms
39,280 KB
testcase_07 AC 66 ms
39,312 KB
testcase_08 AC 49 ms
39,368 KB
testcase_09 AC 50 ms
39,276 KB
testcase_10 AC 49 ms
39,368 KB
testcase_11 AC 54 ms
39,408 KB
testcase_12 AC 48 ms
39,360 KB
testcase_13 AC 49 ms
39,428 KB
testcase_14 AC 49 ms
39,268 KB
testcase_15 AC 49 ms
39,276 KB
testcase_16 AC 49 ms
39,376 KB
testcase_17 AC 49 ms
39,304 KB
testcase_18 AC 49 ms
39,304 KB
testcase_19 AC 49 ms
39,356 KB
testcase_20 AC 50 ms
39,272 KB
testcase_21 AC 48 ms
39,340 KB
testcase_22 AC 49 ms
39,360 KB
testcase_23 AC 49 ms
39,464 KB
testcase_24 AC 50 ms
39,356 KB
testcase_25 AC 49 ms
39,352 KB
testcase_26 AC 50 ms
39,304 KB
testcase_27 AC 49 ms
39,436 KB
testcase_28 AC 50 ms
39,284 KB
testcase_29 AC 49 ms
39,308 KB
testcase_30 WA -
testcase_31 AC 50 ms
39,424 KB
testcase_32 AC 113 ms
39,368 KB
testcase_33 AC 113 ms
39,412 KB
testcase_34 AC 113 ms
39,308 KB
testcase_35 AC 51 ms
39,280 KB
testcase_36 AC 49 ms
39,420 KB
testcase_37 AC 50 ms
39,412 KB
testcase_38 AC 50 ms
39,284 KB
testcase_39 AC 50 ms
39,424 KB
testcase_40 AC 49 ms
39,368 KB
testcase_41 AC 50 ms
39,232 KB
testcase_42 AC 50 ms
39,452 KB
testcase_43 AC 48 ms
39,464 KB
testcase_44 AC 49 ms
39,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math as m
n=input()
print next(iter(i for i in range(3,2**20)if n%i<1),0)or n
0