結果

問題 No.312 置換処理
ユーザー nmnmnmnmnmnmnmnmnmnmnmnmnmnm
提出日時 2015-12-05 00:11:17
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 99 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 6,264 KB
最終ジャッジ日時 2023-10-12 14:52:15
合計ジャッジ時間 11,066 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
6,072 KB
testcase_01 WA -
testcase_02 AC 194 ms
5,964 KB
testcase_03 WA -
testcase_04 AC 190 ms
6,080 KB
testcase_05 AC 194 ms
6,192 KB
testcase_06 AC 193 ms
6,152 KB
testcase_07 AC 193 ms
6,072 KB
testcase_08 AC 193 ms
5,960 KB
testcase_09 AC 193 ms
6,128 KB
testcase_10 AC 193 ms
6,000 KB
testcase_11 AC 195 ms
6,084 KB
testcase_12 AC 193 ms
5,980 KB
testcase_13 AC 192 ms
5,976 KB
testcase_14 AC 194 ms
6,076 KB
testcase_15 AC 193 ms
6,028 KB
testcase_16 AC 193 ms
6,076 KB
testcase_17 AC 194 ms
6,076 KB
testcase_18 AC 193 ms
6,200 KB
testcase_19 AC 193 ms
6,004 KB
testcase_20 AC 193 ms
5,980 KB
testcase_21 AC 193 ms
6,196 KB
testcase_22 AC 191 ms
6,032 KB
testcase_23 AC 189 ms
6,072 KB
testcase_24 AC 189 ms
6,004 KB
testcase_25 AC 189 ms
6,220 KB
testcase_26 AC 191 ms
6,052 KB
testcase_27 AC 190 ms
6,044 KB
testcase_28 AC 191 ms
6,044 KB
testcase_29 AC 189 ms
6,232 KB
testcase_30 WA -
testcase_31 AC 193 ms
6,152 KB
testcase_32 AC 192 ms
6,052 KB
testcase_33 AC 193 ms
5,964 KB
testcase_34 AC 192 ms
6,004 KB
testcase_35 AC 193 ms
5,964 KB
testcase_36 AC 190 ms
5,980 KB
testcase_37 AC 189 ms
5,964 KB
testcase_38 AC 190 ms
6,200 KB
testcase_39 AC 192 ms
6,080 KB
testcase_40 AC 194 ms
6,196 KB
testcase_41 AC 193 ms
5,960 KB
testcase_42 AC 193 ms
6,076 KB
testcase_43 AC 190 ms
5,952 KB
testcase_44 AC 190 ms
6,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = input()
ans = x
for i in xrange(3,2000000):
    if x%i==0:
        ans = min([ans,i])
print ans
0