結果

問題 No.910 素数部分列
ユーザー L-aquaL-aqua
提出日時 2019-12-05 03:19:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 1,000 ms
コード長 748 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 117,504 KB
最終ジャッジ日時 2024-05-08 23:19:53
合計ジャッジ時間 6,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 47 ms
52,096 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 44 ms
51,712 KB
testcase_05 AC 43 ms
52,096 KB
testcase_06 AC 44 ms
52,352 KB
testcase_07 AC 45 ms
52,096 KB
testcase_08 AC 43 ms
52,096 KB
testcase_09 AC 43 ms
52,352 KB
testcase_10 AC 43 ms
52,352 KB
testcase_11 AC 44 ms
51,712 KB
testcase_12 AC 43 ms
52,096 KB
testcase_13 AC 43 ms
51,968 KB
testcase_14 AC 43 ms
51,968 KB
testcase_15 AC 43 ms
52,096 KB
testcase_16 AC 43 ms
51,968 KB
testcase_17 AC 42 ms
52,224 KB
testcase_18 AC 43 ms
52,096 KB
testcase_19 AC 43 ms
52,224 KB
testcase_20 AC 43 ms
52,224 KB
testcase_21 AC 43 ms
52,224 KB
testcase_22 AC 43 ms
51,968 KB
testcase_23 AC 91 ms
91,520 KB
testcase_24 AC 91 ms
92,032 KB
testcase_25 AC 92 ms
92,288 KB
testcase_26 AC 91 ms
91,776 KB
testcase_27 AC 92 ms
92,928 KB
testcase_28 AC 89 ms
92,416 KB
testcase_29 AC 96 ms
101,248 KB
testcase_30 AC 96 ms
100,480 KB
testcase_31 AC 97 ms
100,480 KB
testcase_32 AC 96 ms
100,864 KB
testcase_33 AC 98 ms
101,376 KB
testcase_34 AC 106 ms
102,656 KB
testcase_35 AC 101 ms
103,296 KB
testcase_36 AC 103 ms
105,856 KB
testcase_37 AC 102 ms
103,808 KB
testcase_38 AC 103 ms
105,344 KB
testcase_39 AC 103 ms
104,704 KB
testcase_40 AC 102 ms
107,776 KB
testcase_41 AC 106 ms
106,240 KB
testcase_42 AC 106 ms
108,544 KB
testcase_43 AC 106 ms
107,008 KB
testcase_44 AC 105 ms
106,368 KB
testcase_45 AC 104 ms
106,112 KB
testcase_46 AC 103 ms
106,368 KB
testcase_47 AC 103 ms
104,576 KB
testcase_48 AC 108 ms
115,840 KB
testcase_49 AC 107 ms
117,248 KB
testcase_50 AC 107 ms
117,504 KB
testcase_51 AC 75 ms
83,456 KB
testcase_52 AC 101 ms
108,672 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