結果

問題 No.1471 Sort Queries
ユーザー tatt61880tatt61880
提出日時 2021-04-09 21:45:21
言語 Kuin
(KuinC++ v.2021.9.17)
結果
TLE  
実行時間 -
コード長 313 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 146,424 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-09-16 12:29:43
合計ジャッジ時間 12,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,760 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,948 KB
testcase_13 AC 129 ms
6,944 KB
testcase_14 AC 109 ms
6,940 KB
testcase_15 AC 208 ms
6,944 KB
testcase_16 AC 38 ms
6,944 KB
testcase_17 AC 91 ms
6,940 KB
testcase_18 AC 59 ms
6,940 KB
testcase_19 AC 52 ms
6,944 KB
testcase_20 AC 213 ms
6,944 KB
testcase_21 AC 98 ms
6,940 KB
testcase_22 AC 77 ms
6,944 KB
testcase_23 AC 477 ms
6,940 KB
testcase_24 AC 478 ms
6,940 KB
testcase_25 AC 790 ms
6,944 KB
testcase_26 AC 410 ms
6,940 KB
testcase_27 AC 709 ms
6,940 KB
testcase_28 AC 711 ms
6,940 KB
testcase_29 AC 412 ms
6,944 KB
testcase_30 AC 455 ms
6,940 KB
testcase_31 AC 729 ms
6,940 KB
testcase_32 AC 598 ms
6,944 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var q: int :: cui@inputInt()
	var s: []char :: cui@input()
	for(1, q)
		var l: int :: cui@inputInt()
		var r: int :: cui@inputInt()
		var x: int :: cui@inputInt()
		var t: []char :: s.sub(l - 1, r - l + 1)
		do t.sort()
		do cui@print("\{t[x - 1]}\n")
	end for
end func
0