結果
| 問題 | No.910 素数部分列 |
| コンテスト | |
| ユーザー |
hrbt__
|
| 提出日時 | 2019-11-26 19:14:48 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 678 bytes |
| 記録 | |
| コンパイル時間 | 120 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 12,800 KB |
| 最終ジャッジ日時 | 2024-11-07 00:52:34 |
| 合計ジャッジ時間 | 5,903 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 WA * 32 |
ソースコード
#!/usr/bin/env python3
n = int(input())
s = input()
s = ''.join(s.split('3'))
s = ''.join(s.split('7'))
ans = n - len(s)
one = 0
nine = 0
nine_one = 0
for i in range(len(s))[::-1]:
if s[i] == '9':
if nine_one > 0:
nine_one -= 1
one -= 1
ans += 1
elif one > 0:
nine_one += 1
nine += 1
else:
nine += 1
if s[i] == '1':
if one > 0:
one -= 1
ans += 1
elif nine > 0:
nine -= 1
ans += 1
else:
one += 1
if s[i] == '5':
if nine > 0:
nine -= 1
ans += 1
print(ans)
hrbt__