結果

問題 No.875 Range Mindex Query
ユーザー Maeda, KazuyaMaeda, Kazuya
提出日時 2019-09-06 21:56:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 475 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,644 KB
最終ジャッジ日時 2024-06-24 17:43:21
合計ジャッジ時間 4,353 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,256 KB
testcase_01 AC 36 ms
10,752 KB
testcase_02 AC 42 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 38 ms
10,752 KB
testcase_07 AC 34 ms
10,752 KB
testcase_08 AC 36 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 47 ms
10,752 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
a = list(map(int, input().split()))

for i in range(q):
    query = input().split()
    if query[0] == '1':
        l = int(query[1]) - 1
        r = int(query[2]) - 1
        temp = a[l]
        a[l] = a[r]
        a[r] = temp
    else:
        minV = 10**10
        minIdx = 0
        for i in range(int(query[1])-1, int(query[2])):
            if a[i] < minV:
                minV = a[i]
                minIdx = i
        print(minIdx+1)
0