結果

問題 No.312 置換処理
ユーザー ynyn
提出日時 2015-12-05 00:16:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-09-14 13:46:34
合計ジャッジ時間 5,766 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
73,728 KB
testcase_01 WA -
testcase_02 AC 96 ms
73,984 KB
testcase_03 WA -
testcase_04 AC 95 ms
73,728 KB
testcase_05 AC 95 ms
73,216 KB
testcase_06 AC 96 ms
73,984 KB
testcase_07 AC 98 ms
73,856 KB
testcase_08 AC 93 ms
73,600 KB
testcase_09 AC 93 ms
73,088 KB
testcase_10 AC 94 ms
73,600 KB
testcase_11 AC 96 ms
73,984 KB
testcase_12 AC 92 ms
73,472 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 96 ms
73,216 KB
testcase_23 AC 99 ms
73,728 KB
testcase_24 AC 95 ms
73,600 KB
testcase_25 AC 95 ms
73,728 KB
testcase_26 AC 95 ms
73,344 KB
testcase_27 WA -
testcase_28 AC 95 ms
73,472 KB
testcase_29 AC 95 ms
73,344 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 97 ms
73,984 KB
testcase_33 AC 97 ms
74,240 KB
testcase_34 AC 97 ms
73,984 KB
testcase_35 AC 96 ms
73,984 KB
testcase_36 AC 95 ms
73,600 KB
testcase_37 AC 95 ms
73,216 KB
testcase_38 WA -
testcase_39 AC 94 ms
73,088 KB
testcase_40 AC 94 ms
73,088 KB
testcase_41 AC 96 ms
73,344 KB
testcase_42 AC 94 ms
73,472 KB
testcase_43 AC 97 ms
73,472 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
nn = 10**6
num = [2]
table = [True] * (nn + 1)

for i in range(2, nn + 1):
    if not table[i]:
        continue
    k = i + i
    while k < nn + 1:
        table[k] = False
        k += i

    num.append(i)

for i in num:
    if i == 2:
        continue
    if n % i == 0:
        print(i)
        exit()
print(n)
0