結果
問題 |
No.1643 Not Substring
|
ユーザー |
|
提出日時 | 2021-07-29 12:21:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 102 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,340 KB |
実行使用メモリ | 54,120 KB |
最終ジャッジ日時 | 2024-10-03 20:47:53 |
合計ジャッジ時間 | 2,125 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 WA * 17 |
ソースコード
s = input() for i in range(1, 1000): t = "a" * i if t not in s: print(t) break