結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 379 ms
324,004 KB
testcase_01 WA -
testcase_02 AC 975 ms
324,028 KB
testcase_03 WA -
testcase_04 AC 379 ms
324,132 KB
testcase_05 AC 381 ms
323,924 KB
testcase_06 AC 383 ms
323,992 KB
testcase_07 AC 403 ms
323,912 KB
testcase_08 AC 378 ms
324,120 KB
testcase_09 AC 381 ms
324,116 KB
testcase_10 AC 381 ms
323,992 KB
testcase_11 AC 377 ms
324,072 KB
testcase_12 AC 379 ms
324,112 KB
testcase_13 AC 374 ms
324,128 KB
testcase_14 AC 373 ms
323,932 KB
testcase_15 AC 371 ms
324,012 KB
testcase_16 AC 373 ms
324,012 KB
testcase_17 AC 375 ms
323,932 KB
testcase_18 AC 370 ms
324,056 KB
testcase_19 AC 371 ms
324,060 KB
testcase_20 AC 375 ms
323,936 KB
testcase_21 AC 378 ms
324,124 KB
testcase_22 AC 380 ms
323,920 KB
testcase_23 AC 379 ms
324,060 KB
testcase_24 AC 378 ms
323,932 KB
testcase_25 AC 382 ms
324,064 KB
testcase_26 AC 384 ms
324,008 KB
testcase_27 AC 380 ms
324,064 KB
testcase_28 AC 380 ms
324,060 KB
testcase_29 AC 382 ms
324,088 KB
testcase_30 WA -
testcase_31 AC 376 ms
324,064 KB
testcase_32 AC 976 ms
324,116 KB
testcase_33 AC 978 ms
323,960 KB
testcase_34 AC 978 ms
324,020 KB
testcase_35 AC 376 ms
324,056 KB
testcase_36 AC 377 ms
324,028 KB
testcase_37 AC 379 ms
324,000 KB
testcase_38 AC 393 ms
324,064 KB
testcase_39 AC 376 ms
323,940 KB
testcase_40 AC 385 ms
323,996 KB
testcase_41 AC 374 ms
324,060 KB
testcase_42 AC 374 ms
324,088 KB
testcase_43 AC 379 ms
324,064 KB
testcase_44 AC 379 ms
324,028 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