結果
問題 |
No.1643 Not Substring
|
ユーザー |
![]() |
提出日時 | 2023-06-23 16:58:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 106 bytes |
コンパイル時間 | 244 ms |
コンパイル使用メモリ | 82,568 KB |
実行使用メモリ | 54,100 KB |
最終ジャッジ日時 | 2024-06-30 21:05:35 |
合計ジャッジ時間 | 2,479 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 WA * 19 |
ソースコード
s = input() + "*" t = "" i = 0 while 1: t += "a" if s[i] != "a": break i += 1 print(t)