結果
| 問題 | No.993 青色 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-02-21 21:29:41 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 180 bytes |
| 記録 | |
| コンパイル時間 | 231 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 64,896 KB |
| 最終ジャッジ日時 | 2026-04-25 02:43:43 |
| 合計ジャッジ時間 | 2,579 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 RE * 1 |
ソースコード
s = input()
n = len(s)
ans = ''
i = 0
while i < n:
if s[i] == 'a' and s[i+1] == 'o':
ans += 'ki'
i += 2
else:
ans += s[i]
i += 1
print(ans)