結果

問題 No.910 素数部分列
ユーザー mkawa2mkawa2
提出日時 2021-03-24 23:21:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 101 ms / 1,000 ms
コード長 1,333 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,872 KB
最終ジャッジ日時 2024-11-26 23:34:28
合計ジャッジ時間 5,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,496 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 25 ms
10,496 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 93 ms
12,440 KB
testcase_24 AC 93 ms
12,868 KB
testcase_25 AC 92 ms
12,608 KB
testcase_26 AC 92 ms
12,616 KB
testcase_27 AC 93 ms
12,564 KB
testcase_28 AC 96 ms
12,612 KB
testcase_29 AC 92 ms
12,736 KB
testcase_30 AC 99 ms
12,868 KB
testcase_31 AC 94 ms
12,444 KB
testcase_32 AC 100 ms
12,872 KB
testcase_33 AC 101 ms
12,868 KB
testcase_34 AC 100 ms
12,744 KB
testcase_35 AC 98 ms
12,744 KB
testcase_36 AC 101 ms
12,872 KB
testcase_37 AC 100 ms
12,872 KB
testcase_38 AC 95 ms
12,740 KB
testcase_39 AC 94 ms
12,740 KB
testcase_40 AC 96 ms
12,744 KB
testcase_41 AC 95 ms
12,868 KB
testcase_42 AC 97 ms
12,748 KB
testcase_43 AC 98 ms
12,612 KB
testcase_44 AC 96 ms
12,872 KB
testcase_45 AC 98 ms
12,744 KB
testcase_46 AC 99 ms
12,868 KB
testcase_47 AC 96 ms
12,872 KB
testcase_48 AC 97 ms
12,868 KB
testcase_49 AC 85 ms
12,868 KB
testcase_50 AC 84 ms
12,744 KB
testcase_51 AC 89 ms
12,872 KB
testcase_52 AC 101 ms
12,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

n=II()
aa=list(map(int,SI()))

# 3,5,7は1字で消せるのですぐ消す
# 残る1,9は11か19か991で消せる
# 11は一番最後に余った1で作る
# 19と991では19の方が消費字数が少ないので19優先で作る
# すると999...999111...111という形が残るはずなので、
# 991をできるだけ作って、残った1で11を作る
# かな?

ans=0
one=0
nine=0
for a in aa:
    if a==1:
        one+=1
    elif a==9:
        if one:
            ans+=1
            one-=1
        else:
            nine+=1
    else:
        ans+=1

c991=min(nine//2,one)
ans+=c991
ans+=(one-c991)//2

print(ans)
0