結果
| 問題 | No.292 芸名 |
| コンテスト | |
| ユーザー |
punyfix
|
| 提出日時 | 2017-09-24 10:32:52 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 95 ms / 2,000 ms |
| コード長 | 133 bytes |
| 記録 | |
| コンパイル時間 | 451 ms |
| コンパイル使用メモリ | 20,444 KB |
| 実行使用メモリ | 15,356 KB |
| 最終ジャッジ日時 | 2026-05-09 19:56:13 |
| 合計ジャッジ時間 | 2,720 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
S,t,u=input().split()
t=int(t)
u=int(u)
n=[]
for i in range(len(S)):
if i!=t and i!=u:
n.append(S[i])
print("".join(n))
punyfix