結果

問題 No.292 芸名
ユーザー brthyyjpbrthyyjp
提出日時 2020-12-08 07:44:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 53,308 KB
最終ジャッジ日時 2024-09-17 14:26:36
合計ジャッジ時間 1,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,056 KB
testcase_01 AC 35 ms
52,328 KB
testcase_02 AC 34 ms
52,524 KB
testcase_03 AC 32 ms
52,092 KB
testcase_04 AC 34 ms
53,020 KB
testcase_05 AC 34 ms
52,064 KB
testcase_06 AC 34 ms
52,344 KB
testcase_07 AC 33 ms
52,988 KB
testcase_08 AC 34 ms
52,480 KB
testcase_09 AC 34 ms
53,308 KB
testcase_10 AC 35 ms
52,280 KB
testcase_11 AC 34 ms
51,920 KB
testcase_12 AC 34 ms
51,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s, t, u = map(str, input().split())
s = list(s)
t, u = int(t), int(u)
s[t] = ''
s[u] = ''
print(''.join(s))
0