結果

問題 No.2085 Directed Complete Graph
ユーザー tailstails
提出日時 2022-09-27 16:55:11
言語 Perl
(5.38.2)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 25,452 KB
平均クエリ数 2472.00
最終ジャッジ日時 2024-06-02 01:07:04
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
24,580 KB
testcase_01 AC 20 ms
24,964 KB
testcase_02 AC 148 ms
24,812 KB
testcase_03 AC 133 ms
25,196 KB
testcase_04 AC 149 ms
24,556 KB
testcase_05 AC 76 ms
24,556 KB
testcase_06 AC 86 ms
25,196 KB
testcase_07 AC 150 ms
24,800 KB
testcase_08 AC 110 ms
25,452 KB
testcase_09 AC 137 ms
24,940 KB
testcase_10 AC 144 ms
25,452 KB
testcase_11 AC 149 ms
24,940 KB
testcase_12 AC 143 ms
25,196 KB
testcase_13 AC 145 ms
25,196 KB
testcase_14 AC 145 ms
25,196 KB
testcase_15 AC 21 ms
25,220 KB
testcase_16 AC 21 ms
25,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

sub f{
	if($#_){
		my@a=f(splice@_,@_/2);
		@b=f(splice@_);
		push@_,shift@{print("? $a[0] $b[0]\n")*<>?\@a:\@b}while@a*@b;
		push@_,@a,@b;
	}
	@_;
}
@a=f++$|..<>;
print"!
$#a
@a"
0