結果

問題 No.910 素数部分列
ユーザー titiatitia
提出日時 2019-10-18 22:42:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 246 ms / 1,000 ms
コード長 1,223 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,108 KB
最終ジャッジ日時 2024-06-25 21:48:54
合計ジャッジ時間 8,390 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 126 ms
12,348 KB
testcase_24 AC 127 ms
12,520 KB
testcase_25 AC 126 ms
12,644 KB
testcase_26 AC 128 ms
12,520 KB
testcase_27 AC 126 ms
12,348 KB
testcase_28 AC 127 ms
12,780 KB
testcase_29 AC 219 ms
14,312 KB
testcase_30 AC 223 ms
14,444 KB
testcase_31 AC 216 ms
14,016 KB
testcase_32 AC 228 ms
14,440 KB
testcase_33 AC 230 ms
14,576 KB
testcase_34 AC 222 ms
14,568 KB
testcase_35 AC 234 ms
14,568 KB
testcase_36 AC 232 ms
14,444 KB
testcase_37 AC 228 ms
14,572 KB
testcase_38 AC 226 ms
14,572 KB
testcase_39 AC 225 ms
14,444 KB
testcase_40 AC 231 ms
15,088 KB
testcase_41 AC 222 ms
14,828 KB
testcase_42 AC 246 ms
14,960 KB
testcase_43 AC 227 ms
15,076 KB
testcase_44 AC 220 ms
14,952 KB
testcase_45 AC 228 ms
14,952 KB
testcase_46 AC 224 ms
14,696 KB
testcase_47 AC 236 ms
14,440 KB
testcase_48 AC 216 ms
16,108 KB
testcase_49 AC 208 ms
15,984 KB
testcase_50 AC 213 ms
15,980 KB
testcase_51 AC 62 ms
11,392 KB
testcase_52 AC 216 ms
14,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()

ANS=0

REST=[]

for x in S:
    if x in {"3","5","7"}:
        ANS+=1
    else:
        REST.append(x)

ONE=0
NINE=0
LEN=len(REST)
USE=[0]*len(REST)

while True:
    while ONE<LEN and REST[ONE]!="1":
        ONE+=1

    NINE=max(ONE,NINE)

    while NINE<LEN and REST[NINE]!="9":
        NINE+=1

    if ONE==LEN or NINE==LEN:
        break
    
    else:
        ANS+=1
        USE[ONE]=1
        USE[NINE]=1
        ONE+=1
        NINE+=1

REST2=[]
for i in range(len(REST)):
    if USE[i]==0:
        REST2.append(REST[i])

REST=REST2

ONE=0
NINE1=0
NINE2=0
LEN=len(REST)
USE=[0]*len(REST)

for i in range(len(REST)):
    while NINE1<LEN and REST[NINE1]!="9":
        NINE1+=1

    NINE2=NINE1+1

    while NINE2<LEN and REST[NINE2]!="9":
        NINE2+=1

    ONE=max(NINE2,ONE)

    while ONE<LEN and REST[ONE]!="1":
        ONE+=1

    if NINE1>=LEN or NINE2>=LEN or ONE>=LEN:
        break

    else:
        ANS+=1
        USE[ONE]=1
        USE[NINE1]=1
        USE[NINE2]=1
        ONE+=1
        NINE1=NINE2+1
        NINE2+=1
        
REST2=[]
for i in range(len(REST)):
    if USE[i]==0:
        REST2.append(REST[i])

REST=REST2

#print(ANS,REST)

ANS+=REST.count("1")//2
print(ANS)
0