結果
| 問題 |
No.2419 MMA文字列2
|
| コンテスト | |
| ユーザー |
sepa38
|
| 提出日時 | 2023-07-21 08:19:09 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 110 bytes |
| コンパイル時間 | 143 ms |
| コンパイル使用メモリ | 82,376 KB |
| 実行使用メモリ | 72,840 KB |
| 最終ジャッジ日時 | 2024-09-21 10:32:32 |
| 合計ジャッジ時間 | 2,938 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 30 |
ソースコード
s = input() assert 3 <= len(s) <= 2 * 10 ** 5 ls = [chr(i+65) for i in range(26)] for c in s: assert c in ls
sepa38