結果

問題 No.292 芸名
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-10-17 15:05:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 53,440 KB
最終ジャッジ日時 2024-09-17 19:41:05
合計ジャッジ時間 1,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
51,896 KB
testcase_01 AC 29 ms
52,624 KB
testcase_02 AC 29 ms
52,792 KB
testcase_03 AC 30 ms
52,628 KB
testcase_04 AC 30 ms
52,600 KB
testcase_05 AC 30 ms
52,892 KB
testcase_06 AC 29 ms
52,272 KB
testcase_07 AC 30 ms
52,804 KB
testcase_08 AC 30 ms
52,904 KB
testcase_09 AC 30 ms
51,824 KB
testcase_10 AC 30 ms
53,068 KB
testcase_11 AC 29 ms
53,440 KB
testcase_12 AC 30 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s,t,w = input().split()
ans = ""
for i in range(len(s)):
    if i != int(t) and i != int(w):
        ans += s[i]
print(ans)
0