結果

問題 No.934 Explosive energy drink
ユーザー tailstails
提出日時 2020-12-16 11:45:19
言語 Perl
(5.38.2)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 28,844 KB
平均クエリ数 354.79
最終ジャッジ日時 2024-07-17 10:13:25
合計ジャッジ時間 6,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
28,844 KB
testcase_01 AC 469 ms
27,844 KB
testcase_02 AC 25 ms
28,100 KB
testcase_03 AC 221 ms
28,196 KB
testcase_04 AC 470 ms
28,356 KB
testcase_05 AC 25 ms
28,428 KB
testcase_06 AC 24 ms
28,100 KB
testcase_07 AC 24 ms
28,228 KB
testcase_08 AC 24 ms
27,908 KB
testcase_09 AC 25 ms
28,484 KB
testcase_10 AC 24 ms
28,612 KB
testcase_11 AC 28 ms
28,484 KB
testcase_12 AC 25 ms
27,588 KB
testcase_13 AC 27 ms
28,084 KB
testcase_14 AC 28 ms
28,484 KB
testcase_15 AC 135 ms
28,228 KB
testcase_16 AC 41 ms
28,228 KB
testcase_17 AC 73 ms
28,356 KB
testcase_18 AC 76 ms
27,844 KB
testcase_19 AC 164 ms
27,972 KB
testcase_20 AC 291 ms
28,728 KB
testcase_21 AC 318 ms
28,384 KB
testcase_22 AC 467 ms
27,844 KB
testcase_23 AC 469 ms
28,228 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$,=$";
$\=$/;
$n=<>;
if(fork()){
	@a=grep<>-1,1..$n;
	print "!",@a+0,@a;
}else{
	for(1..$n){
		print "?",$n-1,1..$_-1,$_+1..$n;
	}
}
0