結果

問題 No.910 素数部分列
ユーザー vwxyzvwxyz
提出日時 2022-09-22 07:16:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 174 ms / 1,000 ms
コード長 1,012 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,936 KB
最終ジャッジ日時 2024-06-01 17:48:18
合計ジャッジ時間 7,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
11,904 KB
testcase_01 AC 43 ms
11,904 KB
testcase_02 AC 42 ms
11,904 KB
testcase_03 AC 43 ms
11,904 KB
testcase_04 AC 43 ms
11,904 KB
testcase_05 AC 42 ms
11,904 KB
testcase_06 AC 43 ms
11,904 KB
testcase_07 AC 41 ms
11,904 KB
testcase_08 AC 43 ms
11,904 KB
testcase_09 AC 41 ms
11,904 KB
testcase_10 AC 42 ms
11,904 KB
testcase_11 AC 42 ms
11,904 KB
testcase_12 AC 42 ms
11,776 KB
testcase_13 AC 42 ms
11,904 KB
testcase_14 AC 42 ms
11,904 KB
testcase_15 AC 40 ms
11,904 KB
testcase_16 AC 43 ms
11,904 KB
testcase_17 AC 42 ms
11,776 KB
testcase_18 AC 41 ms
12,032 KB
testcase_19 AC 41 ms
11,904 KB
testcase_20 AC 41 ms
11,904 KB
testcase_21 AC 42 ms
11,904 KB
testcase_22 AC 41 ms
12,032 KB
testcase_23 AC 157 ms
12,288 KB
testcase_24 AC 157 ms
12,288 KB
testcase_25 AC 156 ms
12,288 KB
testcase_26 AC 158 ms
12,288 KB
testcase_27 AC 157 ms
12,416 KB
testcase_28 AC 159 ms
12,288 KB
testcase_29 AC 172 ms
12,288 KB
testcase_30 AC 166 ms
12,288 KB
testcase_31 AC 164 ms
12,416 KB
testcase_32 AC 164 ms
12,288 KB
testcase_33 AC 166 ms
12,288 KB
testcase_34 AC 174 ms
12,416 KB
testcase_35 AC 169 ms
12,288 KB
testcase_36 AC 167 ms
12,416 KB
testcase_37 AC 163 ms
12,288 KB
testcase_38 AC 166 ms
12,288 KB
testcase_39 AC 165 ms
12,288 KB
testcase_40 AC 168 ms
12,784 KB
testcase_41 AC 171 ms
12,780 KB
testcase_42 AC 172 ms
12,784 KB
testcase_43 AC 166 ms
12,908 KB
testcase_44 AC 169 ms
12,784 KB
testcase_45 AC 170 ms
12,652 KB
testcase_46 AC 168 ms
12,528 KB
testcase_47 AC 164 ms
12,288 KB
testcase_48 AC 157 ms
13,808 KB
testcase_49 AC 156 ms
13,936 KB
testcase_50 AC 153 ms
13,932 KB
testcase_51 AC 101 ms
12,288 KB
testcase_52 AC 169 ms
13,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

N=int(readline())
ans=0
S=[]
for s in readline().rstrip():
    if s in "357":
        ans+=1
    else:
        S.append(s)
    if len(S)>=2 and S[-2:]==["1","9"]:
        S.pop()
        S.pop()
        ans+=1
cnt9,cnt1=S.count("9"),S.count("1")
cnt=min(cnt9//2,cnt1)
ans+=cnt
cnt9-=2*cnt
cnt1-=cnt
ans+=cnt1//2
print(ans)
0