結果

問題 No.312 置換処理
ユーザー aka_satana_haaka_satana_ha
提出日時 2017-11-25 23:30:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-05-05 12:44:02
合計ジャッジ時間 10,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
19,072 KB
testcase_01 WA -
testcase_02 AC 465 ms
21,760 KB
testcase_03 WA -
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 449 ms
21,760 KB
testcase_06 AC 260 ms
17,536 KB
testcase_07 AC 398 ms
20,352 KB
testcase_08 AC 356 ms
19,840 KB
testcase_09 AC 169 ms
14,976 KB
testcase_10 AC 208 ms
15,872 KB
testcase_11 AC 407 ms
19,968 KB
testcase_12 AC 266 ms
17,280 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 26 ms
10,880 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 AC 27 ms
10,880 KB
testcase_25 WA -
testcase_26 AC 25 ms
10,880 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 62 ms
12,032 KB
testcase_33 AC 151 ms
14,336 KB
testcase_34 AC 162 ms
14,464 KB
testcase_35 AC 163 ms
14,336 KB
testcase_36 AC 26 ms
10,880 KB
testcase_37 AC 27 ms
10,880 KB
testcase_38 WA -
testcase_39 AC 145 ms
14,208 KB
testcase_40 AC 46 ms
11,392 KB
testcase_41 AC 27 ms
10,880 KB
testcase_42 AC 38 ms
11,392 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N=int(input())

#素数の表の作成
n_sqrt = math.ceil(math.sqrt(N))
isPrime = [True for i in range(n_sqrt)]
primes = []

for i in range(4,n_sqrt,2):
    isPrime[i]=False

for i in range(3,n_sqrt,2):
    if isPrime[i]==True:
        primes.append(i)
        for j in range(i+i,n_sqrt,i):
            isPrime[j]=False

for i in primes:
    if N%i==0:
        print(i)
        exit()
print(N)
0