結果

問題 No.292 芸名
ユーザー No-RaNo-Ra
提出日時 2017-08-22 21:30:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-15 04:26:39
合計ジャッジ時間 1,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 8 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
S, t, u = input().split()
t, u = int(t), int(u)
listS = [str(i) for i in S]

if t == u:
    listS.pop(t)
else:
    listS.pop(t)
    listS.pop(u-1)

for i in listS:
    sys.stdout.write(i)
sys.stdout.write("\n")
0