結果
| 問題 | No.292 芸名 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-22 23:38:45 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 56 ms / 2,000 ms |
| + 299µs | |
| コード長 | 137 bytes |
| 記録 | |
| コンパイル時間 | 226 ms |
| コンパイル使用メモリ | 95,940 KB |
| 実行使用メモリ | 79,128 KB |
| 最終ジャッジ日時 | 2026-09-01 20:24:26 |
| 合計ジャッジ時間 | 2,214 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
S, t, u = input().split()
t = int(t)
u = int(u)
for i in range(len(S)):
if i != t and i != u:
print(S[i], end = "")
print("")