結果

問題 No.875 Range Mindex Query
ユーザー Maeda, KazuyaMaeda, Kazuya
提出日時 2019-09-06 21:57:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 475 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-06-24 17:45:51
合計ジャッジ時間 14,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,088 KB
testcase_01 AC 71 ms
67,456 KB
testcase_02 AC 79 ms
67,456 KB
testcase_03 AC 51 ms
58,496 KB
testcase_04 AC 55 ms
60,544 KB
testcase_05 AC 50 ms
58,880 KB
testcase_06 AC 68 ms
65,920 KB
testcase_07 AC 78 ms
68,864 KB
testcase_08 AC 55 ms
59,648 KB
testcase_09 AC 56 ms
60,288 KB
testcase_10 AC 75 ms
67,200 KB
testcase_11 TLE -
testcase_12 AC 1,787 ms
83,128 KB
testcase_13 TLE -
testcase_14 AC 1,935 ms
88,320 KB
testcase_15 TLE -
testcase_16 TLE -
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