結果
| 問題 |
No.1643 Not Substring
|
| コンテスト | |
| ユーザー |
googol_S0
|
| 提出日時 | 2021-08-13 21:35:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 81 bytes |
| コンパイル時間 | 379 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2024-10-03 21:38:48 |
| 合計ジャッジ時間 | 2,209 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 WA * 17 |
ソースコード
X=input()
for t in range(1,111):
if not('a'*t in X):
print('a'*t)
break
googol_S0