結果

問題 No.292 芸名
ユーザー roiti46roiti46
提出日時 2015-10-23 22:33:34
言語 Python2
(2.7.18)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 6,600 KB
実行使用メモリ 7,980 KB
最終ジャッジ日時 2023-09-30 05:11:50
合計ジャッジ時間 1,782 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
7,752 KB
testcase_01 AC 24 ms
7,724 KB
testcase_02 AC 24 ms
7,924 KB
testcase_03 AC 25 ms
7,752 KB
testcase_04 AC 25 ms
7,772 KB
testcase_05 AC 24 ms
7,880 KB
testcase_06 AC 24 ms
7,768 KB
testcase_07 AC 24 ms
7,924 KB
testcase_08 AC 25 ms
7,792 KB
testcase_09 AC 24 ms
7,780 KB
testcase_10 AC 24 ms
7,772 KB
testcase_11 AC 24 ms
7,980 KB
testcase_12 AC 24 ms
7,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll

S, i, j = raw_input().split()
S, i, j = list(S), int(i), int(j)

S[i] = S[j] = ""
print "".join(S)
0