結果
| 問題 | No.1643 Not Substring |
| コンテスト | |
| ユーザー |
OR6107
|
| 提出日時 | 2021-08-13 21:27:12 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 124 bytes |
| 記録 | |
| コンパイル時間 | 132 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2026-04-19 21:45:27 |
| 合計ジャッジ時間 | 1,938 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 WA * 19 |
ソースコード
s = input()
ans = ""
for i in range(len(s)):
if s[i] == "a":
ans += "a"
continue
else:
break
print(ans+"a")
OR6107