結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 362 ms
19,200 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 455 ms
21,760 KB
testcase_06 AC 269 ms
17,408 KB
testcase_07 AC 392 ms
20,480 KB
testcase_08 AC 363 ms
19,840 KB
testcase_09 AC 176 ms
15,104 KB
testcase_10 AC 207 ms
15,872 KB
testcase_11 AC 377 ms
20,096 KB
testcase_12 AC 272 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 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 158 ms
14,592 KB
testcase_36 AC 27 ms
10,880 KB
testcase_37 AC 26 ms
10,880 KB
testcase_38 WA -
testcase_39 AC 150 ms
14,208 KB
testcase_40 AC 43 ms
11,520 KB
testcase_41 AC 26 ms
10,880 KB
testcase_42 AC 39 ms
11,264 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)
        break
0