結果

問題 No.910 素数部分列
ユーザー hedwig100
提出日時 2020-04-12 16:36:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,768 KB
最終ジャッジ日時 2024-09-22 02:42:16
合計ジャッジ時間 4,431 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22 WA * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)

def main():
    n = int(input())
    s = input()
    stack = [-1]
    ans = 0
    for i in range(n):
        if s[i] in '357':
            ans += 1
        else:
            if s[i] == '9':
                if stack[-1] == '1':
                    ans += 1
                    stack.pop()
            else:
                stack.append(s[i])
    
    ans += stack.count('1')//2
    print(ans)

if __name__ =='__main__':
    main()   
0