結果

問題 No.312 置換処理
ユーザー tjaketjake
提出日時 2015-12-05 01:34:38
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 85 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 324,608 KB
最終ジャッジ日時 2024-09-14 14:13:52
合計ジャッジ時間 24,622 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 386 ms
324,480 KB
testcase_01 WA -
testcase_02 AC 1,018 ms
324,544 KB
testcase_03 WA -
testcase_04 AC 406 ms
324,600 KB
testcase_05 AC 398 ms
324,500 KB
testcase_06 AC 403 ms
324,480 KB
testcase_07 AC 406 ms
324,428 KB
testcase_08 AC 399 ms
324,480 KB
testcase_09 AC 398 ms
324,480 KB
testcase_10 AC 400 ms
324,480 KB
testcase_11 AC 402 ms
324,480 KB
testcase_12 AC 394 ms
324,480 KB
testcase_13 AC 403 ms
324,568 KB
testcase_14 AC 386 ms
324,508 KB
testcase_15 AC 402 ms
324,444 KB
testcase_16 AC 401 ms
324,440 KB
testcase_17 AC 387 ms
324,460 KB
testcase_18 AC 387 ms
324,380 KB
testcase_19 AC 407 ms
324,500 KB
testcase_20 AC 413 ms
324,480 KB
testcase_21 AC 391 ms
324,480 KB
testcase_22 AC 398 ms
324,468 KB
testcase_23 AC 385 ms
324,480 KB
testcase_24 AC 384 ms
324,448 KB
testcase_25 AC 386 ms
324,560 KB
testcase_26 AC 385 ms
324,532 KB
testcase_27 AC 385 ms
324,352 KB
testcase_28 AC 382 ms
324,480 KB
testcase_29 AC 386 ms
324,504 KB
testcase_30 WA -
testcase_31 AC 387 ms
324,564 KB
testcase_32 AC 1,020 ms
324,320 KB
testcase_33 AC 1,019 ms
324,608 KB
testcase_34 AC 1,050 ms
324,480 KB
testcase_35 AC 400 ms
324,424 KB
testcase_36 AC 396 ms
324,608 KB
testcase_37 AC 396 ms
324,480 KB
testcase_38 AC 391 ms
324,480 KB
testcase_39 AC 389 ms
324,556 KB
testcase_40 AC 399 ms
324,488 KB
testcase_41 AC 400 ms
324,480 KB
testcase_42 AC 402 ms
324,352 KB
testcase_43 AC 403 ms
324,480 KB
testcase_44 AC 393 ms
324,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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