結果

問題 No.910 素数部分列
ユーザー L-aquaL-aqua
提出日時 2019-12-05 03:19:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 1,000 ms
コード長 748 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 119,724 KB
最終ジャッジ日時 2024-12-15 07:24:58
合計ジャッジ時間 5,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,360 KB
testcase_01 AC 38 ms
53,500 KB
testcase_02 AC 38 ms
53,564 KB
testcase_03 AC 37 ms
53,424 KB
testcase_04 AC 38 ms
52,524 KB
testcase_05 AC 37 ms
53,128 KB
testcase_06 AC 37 ms
52,408 KB
testcase_07 AC 39 ms
53,620 KB
testcase_08 AC 37 ms
52,808 KB
testcase_09 AC 38 ms
54,124 KB
testcase_10 AC 37 ms
52,648 KB
testcase_11 AC 36 ms
52,956 KB
testcase_12 AC 37 ms
52,204 KB
testcase_13 AC 39 ms
52,884 KB
testcase_14 AC 38 ms
53,496 KB
testcase_15 AC 37 ms
53,284 KB
testcase_16 AC 37 ms
54,056 KB
testcase_17 AC 37 ms
52,568 KB
testcase_18 AC 36 ms
52,408 KB
testcase_19 AC 36 ms
53,012 KB
testcase_20 AC 37 ms
52,756 KB
testcase_21 AC 37 ms
53,356 KB
testcase_22 AC 37 ms
53,744 KB
testcase_23 AC 76 ms
92,040 KB
testcase_24 AC 75 ms
92,796 KB
testcase_25 AC 77 ms
93,932 KB
testcase_26 AC 74 ms
92,556 KB
testcase_27 AC 78 ms
94,656 KB
testcase_28 AC 77 ms
93,500 KB
testcase_29 AC 80 ms
102,184 KB
testcase_30 AC 79 ms
100,952 KB
testcase_31 AC 80 ms
102,156 KB
testcase_32 AC 79 ms
102,308 KB
testcase_33 AC 81 ms
101,568 KB
testcase_34 AC 82 ms
103,184 KB
testcase_35 AC 83 ms
103,612 KB
testcase_36 AC 85 ms
106,296 KB
testcase_37 AC 84 ms
105,408 KB
testcase_38 AC 86 ms
106,564 KB
testcase_39 AC 85 ms
106,064 KB
testcase_40 AC 86 ms
107,752 KB
testcase_41 AC 85 ms
107,832 KB
testcase_42 AC 90 ms
109,272 KB
testcase_43 AC 90 ms
109,612 KB
testcase_44 AC 88 ms
108,184 KB
testcase_45 AC 87 ms
107,188 KB
testcase_46 AC 86 ms
106,536 KB
testcase_47 AC 85 ms
105,672 KB
testcase_48 AC 90 ms
116,216 KB
testcase_49 AC 91 ms
117,420 KB
testcase_50 AC 93 ms
119,724 KB
testcase_51 AC 62 ms
84,940 KB
testcase_52 AC 86 ms
109,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

prime = [3,5,7,11,19,991]
prime357 = [3,5,7]
import bisect
n = int(input())
s = list(map(int, list(input())))
count = 0
s_except357 = []
for i in s:
    if i in prime357:
        count += 1
    else:
        s_except357.append(i)
len19 = len(s_except357)
cnt1 = 0
list1 = []
next = []
for i in range(len19):
    if s_except357[i] == 1:
        cnt1 += 1
        list1.append(i)
    elif cnt1 > 0:
        list1.pop()
        count += 1
        cnt1 -= 1
    else:
        next.append(i)
next.extend(list1)
s_91 = [s_except357[i] for i in next]
s_91.sort()
center = bisect.bisect_left(s_91, 5)
one = center
nine = len(s_91) - center
if one >= nine//2:
    count += nine//2
    one -= nine//2
    count += one // 2
else:
    count += one
print(count)
0