結果
問題 | No.875 Range Mindex Query |
ユーザー | daku9640 |
提出日時 | 2019-09-06 21:31:14 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 304 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 55,736 KB |
最終ジャッジ日時 | 2024-06-24 16:54:01 |
合計ジャッジ時間 | 11,991 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 521 ms
49,320 KB |
testcase_01 | AC | 529 ms
43,924 KB |
testcase_02 | AC | 540 ms
44,068 KB |
testcase_03 | AC | 521 ms
44,188 KB |
testcase_04 | AC | 528 ms
43,932 KB |
testcase_05 | AC | 527 ms
43,708 KB |
testcase_06 | AC | 530 ms
43,800 KB |
testcase_07 | AC | 529 ms
44,184 KB |
testcase_08 | AC | 529 ms
43,940 KB |
testcase_09 | AC | 531 ms
44,032 KB |
testcase_10 | AC | 537 ms
44,144 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import numpy as np def solve(): n, q = map(int, input().split()) A = [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()