結果

問題 No.292 芸名
コンテスト
ユーザー pluto77
提出日時 2016-02-04 10:11:49
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 159 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 136 ms
コンパイル使用メモリ 77,088 KB
最終ジャッジ日時 2025-12-03 19:11:27
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#coding: utf-8
##yuki_292

stdin=[]
stdin=raw_input().split()

s=[]
s=stdin[0]
t=int(stdin[1])
u=int(stdin[2])

if t>u:
 t,u=u,t

print s[:t]+s[t+1:u]+s[u+1:]
0