結果
| 問題 | No.292 芸名 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-22 00:22:54 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 290 bytes |
| 記録 | |
| コンパイル時間 | 566 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-03 04:10:35 |
| 合計ジャッジ時間 | 2,374 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge4_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 7 WA * 3 |
ソースコード
S, t, u = input().split(' ')
S = list(S)
t = int(t)
u = int(u)
if t == u:
S.remove(S[t])
S = ''.join(S)
print(S)
elif t > u:
S.remove(S[t])
S.remove(S[u])
S = ''.join(S)
print(S)
elif u > t:
S.remove(S[u])
S.remove(S[t])
S = ''.join(S)
print(S)