結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 383 ms
18,432 KB
testcase_02 AC 583 ms
21,760 KB
testcase_03 AC 612 ms
21,760 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 129 ms
18,560 KB
testcase_06 AC 273 ms
15,616 KB
testcase_07 AC 449 ms
18,688 KB
testcase_08 AC 264 ms
17,280 KB
testcase_09 AC 100 ms
13,824 KB
testcase_10 AC 167 ms
14,336 KB
testcase_11 AC 408 ms
17,792 KB
testcase_12 AC 137 ms
15,360 KB
testcase_13 AC 122 ms
18,048 KB
testcase_14 AC 98 ms
16,128 KB
testcase_15 AC 88 ms
15,360 KB
testcase_16 AC 68 ms
13,568 KB
testcase_17 AC 105 ms
16,768 KB
testcase_18 AC 104 ms
16,768 KB
testcase_19 AC 120 ms
17,664 KB
testcase_20 AC 128 ms
18,432 KB
testcase_21 AC 133 ms
18,560 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 90 ms
12,416 KB
testcase_31 AC 49 ms
12,288 KB
testcase_32 AC 71 ms
11,904 KB
testcase_33 AC 173 ms
14,464 KB
testcase_34 AC 177 ms
14,592 KB
testcase_35 AC 135 ms
13,440 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 30 ms
10,880 KB
testcase_39 AC 77 ms
13,312 KB
testcase_40 AC 43 ms
11,264 KB
testcase_41 AC 30 ms
10,880 KB
testcase_42 AC 37 ms
11,136 KB
testcase_43 AC 30 ms
10,880 KB
testcase_44 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N=int(input())

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

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

#2
if N%2==0:
    N=int(N/2)
    if(N%2==0):
        print(4)
        exit()

#3以上
for i in range(3,n_sqrt+1,2):
    if isPrime[i]==True:
        primes.append(i)
        if N%i==0:
            print(i)
            exit()
        for j in range(i+i,n_sqrt,i):
            isPrime[j]=False
print(N)
0