結果

問題 No.1959 Prefix MinMax
ユーザー tailstails
提出日時 2022-05-27 22:09:35
言語 Perl
(5.38.2)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 25,452 KB
平均クエリ数 26.72
最終ジャッジ日時 2024-09-20 17:10:17
合計ジャッジ時間 4,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,812 KB
testcase_01 AC 25 ms
24,812 KB
testcase_02 AC 23 ms
25,196 KB
testcase_03 AC 25 ms
24,940 KB
testcase_04 AC 24 ms
24,940 KB
testcase_05 AC 25 ms
25,196 KB
testcase_06 AC 24 ms
24,556 KB
testcase_07 AC 67 ms
24,556 KB
testcase_08 AC 68 ms
25,196 KB
testcase_09 AC 65 ms
24,812 KB
testcase_10 AC 65 ms
24,940 KB
testcase_11 AC 64 ms
24,940 KB
testcase_12 AC 64 ms
25,196 KB
testcase_13 AC 64 ms
25,196 KB
testcase_14 AC 65 ms
24,812 KB
testcase_15 AC 65 ms
25,196 KB
testcase_16 AC 64 ms
24,812 KB
testcase_17 AC 63 ms
24,940 KB
testcase_18 AC 65 ms
24,940 KB
testcase_19 AC 68 ms
24,812 KB
testcase_20 AC 68 ms
24,940 KB
testcase_21 AC 70 ms
25,196 KB
testcase_22 AC 69 ms
25,452 KB
testcase_23 AC 67 ms
25,196 KB
testcase_24 AC 64 ms
24,940 KB
testcase_25 AC 65 ms
24,940 KB
testcase_26 AC 63 ms
24,940 KB
testcase_27 AC 64 ms
24,940 KB
testcase_28 AC 66 ms
24,940 KB
testcase_29 AC 65 ms
25,196 KB
testcase_30 AC 66 ms
24,812 KB
testcase_31 AC 68 ms
24,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

sub f{
	print "? @_\n";
	@b=glob<>;
	$p[0]=$b[0];
	for(1..$n-1){
		if($b[$_]!=$b[$_-1]){
			$p[$_]=$b[$_];
		}
	}
}
$|=1;
for(1..<>){
	$n=<>;
	@p=(-1)x$n;
	f map$_&1,0..$n-2;
	f map$_&1,1..$n-1;
	print"! @p\n";
}
0