結果
| 問題 | No.292 芸名 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-05-10 20:20:27 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 195 bytes |
| 記録 | |
| コンパイル時間 | 352 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-27 08:09:22 |
| 合計ジャッジ時間 | 2,658 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 6 WA * 4 |
ソースコード
s, t, u = input().split()
S = list(s)
t = int(t)
u = int(u)
if t == u:
S.pop(t)
print("".join(S))
else:
a = S[:t]
b = S[t+1:u]
c = S[u+1:]
d = a+b+c
print("".join(d))