結果

問題 No.292 芸名
ユーザー trineutron
提出日時 2020-04-13 21:55:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 158 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-25 10:28:55
合計ジャッジ時間 1,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

s, t, u = map(int, input().split())
t = int(t)
u = int(u)
for i in range(len(s)):
    if i == t or i == u:
        continue
    print(s[i], end="")
print("")
0