結果
| 問題 |
No.3020 ユークリッドの互除法・改
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 20:47:59 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 155 bytes |
| コンパイル時間 | 202 ms |
| コンパイル使用メモリ | 81,848 KB |
| 実行使用メモリ | 53,536 KB |
| 最終ジャッジ日時 | 2025-06-12 20:50:02 |
| 合計ジャッジ時間 | 2,006 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 21 |
ソースコード
s = input().strip()
counts = [
s.count('Y'),
s.count('E'),
s.count('A'),
s.count('H'),
s.count('!')
]
print(' '.join(map(str, counts)))
gew1fw