結果

問題 No.875 Range Mindex Query
ユーザー daku9640daku9640
提出日時 2019-09-06 21:32:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 316 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 56,800 KB
最終ジャッジ日時 2024-06-24 16:57:15
合計ジャッジ時間 18,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
49,736 KB
testcase_01 AC 519 ms
43,976 KB
testcase_02 AC 519 ms
43,980 KB
testcase_03 AC 519 ms
43,976 KB
testcase_04 AC 522 ms
44,208 KB
testcase_05 AC 518 ms
44,236 KB
testcase_06 AC 518 ms
43,976 KB
testcase_07 AC 529 ms
44,232 KB
testcase_08 AC 522 ms
43,856 KB
testcase_09 AC 525 ms
44,340 KB
testcase_10 AC 526 ms
44,228 KB
testcase_11 AC 1,820 ms
48,716 KB
testcase_12 AC 1,478 ms
46,924 KB
testcase_13 AC 1,396 ms
49,224 KB
testcase_14 AC 1,348 ms
48,716 KB
testcase_15 AC 1,757 ms
49,348 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
def solve():
    n, q = map(int, input().split())
    A = np.asarray([0] + list(map(int, input().split())))
    for _ in range(q):
        c, l, r = map(int, input().split())
        if c == 1:
            A[l], A[r] = A[r], A[l]
        else:
            print(l + np.argmin(A[l:r + 1]))
solve()
0