結果

問題 No.910 素数部分列
ユーザー stngstng
提出日時 2022-08-13 12:21:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 734 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 118,192 KB
最終ジャッジ日時 2024-09-24 16:26:00
合計ジャッジ時間 5,997 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,804 KB
testcase_01 AC 41 ms
53,700 KB
testcase_02 AC 40 ms
53,684 KB
testcase_03 AC 40 ms
54,668 KB
testcase_04 AC 42 ms
54,496 KB
testcase_05 AC 42 ms
53,872 KB
testcase_06 AC 40 ms
54,924 KB
testcase_07 AC 41 ms
54,396 KB
testcase_08 AC 41 ms
54,360 KB
testcase_09 AC 41 ms
54,868 KB
testcase_10 AC 41 ms
54,228 KB
testcase_11 AC 41 ms
54,996 KB
testcase_12 AC 41 ms
53,916 KB
testcase_13 AC 42 ms
53,756 KB
testcase_14 AC 41 ms
55,364 KB
testcase_15 AC 41 ms
54,912 KB
testcase_16 AC 42 ms
54,100 KB
testcase_17 AC 42 ms
54,220 KB
testcase_18 AC 40 ms
54,248 KB
testcase_19 AC 41 ms
54,172 KB
testcase_20 AC 40 ms
53,732 KB
testcase_21 AC 41 ms
54,112 KB
testcase_22 AC 41 ms
54,432 KB
testcase_23 AC 79 ms
88,304 KB
testcase_24 AC 80 ms
88,744 KB
testcase_25 AC 83 ms
89,524 KB
testcase_26 AC 81 ms
88,976 KB
testcase_27 AC 135 ms
87,944 KB
testcase_28 AC 82 ms
89,060 KB
testcase_29 AC 119 ms
108,336 KB
testcase_30 AC 119 ms
108,220 KB
testcase_31 AC 122 ms
110,340 KB
testcase_32 AC 119 ms
110,672 KB
testcase_33 AC 118 ms
108,404 KB
testcase_34 AC 123 ms
114,028 KB
testcase_35 AC 123 ms
113,076 KB
testcase_36 AC 124 ms
108,904 KB
testcase_37 AC 122 ms
108,292 KB
testcase_38 AC 124 ms
106,592 KB
testcase_39 AC 117 ms
107,028 KB
testcase_40 AC 116 ms
103,492 KB
testcase_41 AC 119 ms
107,156 KB
testcase_42 AC 119 ms
103,376 KB
testcase_43 AC 118 ms
106,148 KB
testcase_44 AC 116 ms
103,976 KB
testcase_45 AC 123 ms
107,460 KB
testcase_46 AC 121 ms
105,940 KB
testcase_47 AC 120 ms
106,784 KB
testcase_48 AC 81 ms
99,004 KB
testcase_49 AC 98 ms
102,868 KB
testcase_50 AC 96 ms
103,280 KB
testcase_51 AC 48 ms
62,796 KB
testcase_52 AC 124 ms
118,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n = int(input())
s = input()
li = []
ans = 0
for i in range(n):
    if s[i] != "1" and s[i] != "9":
        ans += 1
    else:
        li.append(s[i])

idx = set()
d1 = deque()
#d9 = deque()

for i in range(len(li)):
    if li[i] == "1":
        d1.append(i)
    if li[i] == "9":
        if len(d1) > 0:
            tmp = d1.popleft()
            idx.add(tmp)
            idx.add(i)
            ans += 1
        
li2 = []
for i in range(len(li)):
    if i not in idx:
        li2.append(li[i])
#print(li2,ans,len(li2))
#exit()

n9 = 0
n1 = 0
for i in range(len(li2)):
    if li2[i] == "1":
        n9 = i
        n1 = len(li2)-i
        break

tmp = min(n9//2,n1)
ans += tmp
ans += (n1-tmp)//2
print(ans)
0