結果
問題 | No.875 Range Mindex Query |
ユーザー | kfrisatsun |
提出日時 | 2019-09-11 16:14:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 610 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 24,040 KB |
最終ジャッジ日時 | 2024-07-02 16:47:15 |
合計ジャッジ時間 | 4,337 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,000 KB |
testcase_01 | AC | 43 ms
10,624 KB |
testcase_02 | AC | 41 ms
10,624 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | AC | 34 ms
10,624 KB |
testcase_05 | AC | 32 ms
10,624 KB |
testcase_06 | AC | 38 ms
10,624 KB |
testcase_07 | AC | 36 ms
10,624 KB |
testcase_08 | AC | 34 ms
10,624 KB |
testcase_09 | AC | 34 ms
10,624 KB |
testcase_10 | AC | 44 ms
10,624 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
# 1 行目に数列の長さを表す整数 N とクエリの数を表す整数 Q がこの順で半角スペース区切りで与えられます。 N, Q = map(int, input().split()) # 2 行目には N 個の整数が半角スペース区切りで与えられ、その内の i 番目 (1≤i≤N) の整数は、初期の ai の値を表します。 ai_list = list(map(int, input().split())) for _ in range(Q): type, l, r = map(int, input().split()) if type == 1: ai_list[l-1], ai_list[r-1] = ai_list[r-1], ai_list[l-1] else: print(ai_list.index(min(ai_list[l-1:r])) + 1)