結果

問題 No.875 Range Mindex Query
ユーザー rkato5680rkato5680
提出日時 2020-08-24 10:27:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 246 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 56,672 KB
最終ジャッジ日時 2024-11-06 08:14:38
合計ジャッジ時間 18,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
50,928 KB
testcase_01 AC 537 ms
43,968 KB
testcase_02 AC 537 ms
44,092 KB
testcase_03 AC 535 ms
44,232 KB
testcase_04 AC 531 ms
43,972 KB
testcase_05 AC 531 ms
44,096 KB
testcase_06 AC 541 ms
44,232 KB
testcase_07 AC 537 ms
44,104 KB
testcase_08 AC 540 ms
44,360 KB
testcase_09 AC 529 ms
43,976 KB
testcase_10 AC 537 ms
44,224 KB
testcase_11 AC 1,745 ms
47,804 KB
testcase_12 AC 1,435 ms
46,412 KB
testcase_13 AC 1,345 ms
49,736 KB
testcase_14 AC 1,326 ms
49,220 KB
testcase_15 AC 1,713 ms
49,604 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N,Q=map(int,input().split())
A = np.array([0]+list(map(int,input().split())))
    
for i in range(Q):
    n,l,r=map(int,input().split())
    if n == 1:
        A[l],A[r] = A[r],A[l]
    else:
        print(A[l:r+1].argmin()+l)
0