結果

問題 No.934 Explosive energy drink
ユーザー tailstails
提出日時 2020-12-16 11:57:32
言語 Bash
(Bash 5.1.16)
結果
AC  
実行時間 1,492 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 25,476 KB
平均クエリ数 354.79
最終ジャッジ日時 2024-07-17 10:12:43
合計ジャッジ時間 13,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,848 KB
testcase_01 AC 1,467 ms
25,220 KB
testcase_02 AC 29 ms
25,220 KB
testcase_03 AC 762 ms
25,220 KB
testcase_04 AC 1,492 ms
25,220 KB
testcase_05 AC 34 ms
24,836 KB
testcase_06 AC 25 ms
25,304 KB
testcase_07 AC 26 ms
25,220 KB
testcase_08 AC 26 ms
24,964 KB
testcase_09 AC 28 ms
24,964 KB
testcase_10 AC 29 ms
24,836 KB
testcase_11 AC 35 ms
25,220 KB
testcase_12 AC 49 ms
25,220 KB
testcase_13 AC 70 ms
24,836 KB
testcase_14 AC 78 ms
24,964 KB
testcase_15 AC 505 ms
24,836 KB
testcase_16 AC 146 ms
25,220 KB
testcase_17 AC 275 ms
24,964 KB
testcase_18 AC 280 ms
24,580 KB
testcase_19 AC 581 ms
25,220 KB
testcase_20 AC 972 ms
25,092 KB
testcase_21 AC 1,039 ms
24,452 KB
testcase_22 AC 1,437 ms
25,220 KB
testcase_23 AC 1,464 ms
25,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

b=({1..1000})
read n
for((i=1;i<=n;++i)){
	echo \? $[n-1] ${b[@]::i-1} ${b[@]:i:n-i}
	read r
	((r))||a+=($i)
}
echo ! ${#a[@]} ${a[@]}
0