結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
16,640 KB
testcase_01 AC 397 ms
18,304 KB
testcase_02 AC 595 ms
21,760 KB
testcase_03 AC 594 ms
21,632 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 131 ms
18,560 KB
testcase_06 AC 273 ms
15,488 KB
testcase_07 AC 474 ms
18,560 KB
testcase_08 AC 281 ms
17,280 KB
testcase_09 AC 104 ms
13,696 KB
testcase_10 AC 175 ms
14,336 KB
testcase_11 AC 398 ms
17,664 KB
testcase_12 AC 143 ms
15,232 KB
testcase_13 AC 124 ms
17,920 KB
testcase_14 AC 101 ms
16,000 KB
testcase_15 AC 90 ms
15,360 KB
testcase_16 AC 65 ms
13,568 KB
testcase_17 AC 104 ms
16,512 KB
testcase_18 AC 106 ms
16,640 KB
testcase_19 AC 120 ms
17,536 KB
testcase_20 AC 130 ms
18,304 KB
testcase_21 AC 130 ms
18,560 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 88 ms
12,160 KB
testcase_31 AC 50 ms
12,288 KB
testcase_32 AC 71 ms
11,776 KB
testcase_33 AC 180 ms
14,336 KB
testcase_34 AC 185 ms
14,336 KB
testcase_35 AC 150 ms
13,568 KB
testcase_36 AC 31 ms
10,880 KB
testcase_37 AC 32 ms
10,752 KB
testcase_38 AC 31 ms
10,752 KB
testcase_39 AC 78 ms
13,056 KB
testcase_40 AC 44 ms
11,264 KB
testcase_41 AC 32 ms
10,752 KB
testcase_42 AC 38 ms
11,008 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 31 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:
        if N%3==0:
            print(3)
        else:
            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