結果
| 問題 | No.292 芸名 |
| コンテスト | |
| ユーザー |
a_ten
|
| 提出日時 | 2016-03-25 23:29:01 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 140 ms |
| コンパイル使用メモリ | 77,460 KB |
| 最終ジャッジ日時 | 2025-12-03 19:55:28 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 2 WA * 8 |
ソースコード
#coding:utf-8 n=raw_input().split() S=list(n[0]) t=int(n[1]) if t!=0: t-=1 u=int(n[2]) if u!=0: u-=1 if t==u: del S[t] else: del S[t] del S[u] print ''.join(S)
a_ten