結果
| 問題 | No.292 芸名 |
| コンテスト | |
| ユーザー |
HIROPON87069639
|
| 提出日時 | 2016-03-08 23:02:46 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 97 ms / 2,000 ms |
| コード長 | 287 bytes |
| 記録 | |
| コンパイル時間 | 146 ms |
| コンパイル使用メモリ | 76,824 KB |
| 最終ジャッジ日時 | 2025-12-03 19:37:54 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
# -*- coding: utf-8 -*-
S, t, u = raw_input().split()
Slist = list(S)
t = int(t)
u = int(u)
if t == u:
Slist.pop(t)
print "".join(Slist)
elif t < u:
Slist.pop(u)
Slist.pop(t)
print "".join(Slist)
elif u < t:
Slist.pop(t)
Slist.pop(u)
print "".join(Slist)
HIROPON87069639