結果

問題 No.630 門松グラフ
ユーザー tailstails
提出日時 2018-01-05 21:52:55
言語 Perl
(5.38.2)
結果
AC  
実行時間 885 ms / 1,500 ms
コード長 353 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 6,016 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-06-02 10:07:49
合計ジャッジ時間 4,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,888 KB
testcase_01 AC 6 ms
5,888 KB
testcase_02 AC 7 ms
5,888 KB
testcase_03 AC 7 ms
5,888 KB
testcase_04 AC 6 ms
5,888 KB
testcase_05 AC 7 ms
5,888 KB
testcase_06 AC 7 ms
6,016 KB
testcase_07 AC 6 ms
6,016 KB
testcase_08 AC 7 ms
6,016 KB
testcase_09 AC 6 ms
5,888 KB
testcase_10 AC 6 ms
5,888 KB
testcase_11 AC 6 ms
6,016 KB
testcase_12 AC 6 ms
5,888 KB
testcase_13 AC 6 ms
5,888 KB
testcase_14 AC 6 ms
5,888 KB
testcase_15 AC 6 ms
5,888 KB
testcase_16 AC 6 ms
5,888 KB
testcase_17 AC 6 ms
5,888 KB
testcase_18 AC 6 ms
6,016 KB
testcase_19 AC 7 ms
5,888 KB
testcase_20 AC 100 ms
25,344 KB
testcase_21 AC 6 ms
6,016 KB
testcase_22 AC 98 ms
25,600 KB
testcase_23 AC 7 ms
5,888 KB
testcase_24 AC 466 ms
20,480 KB
testcase_25 AC 7 ms
5,888 KB
testcase_26 AC 134 ms
20,608 KB
testcase_27 AC 885 ms
20,608 KB
testcase_28 AC 98 ms
24,832 KB
testcase_29 AC 81 ms
20,968 KB
testcase_30 AC 107 ms
23,296 KB
testcase_31 AC 100 ms
21,632 KB
testcase_32 AC 50 ms
14,848 KB
testcase_33 AC 56 ms
13,440 KB
testcase_34 AC 76 ms
17,252 KB
testcase_35 AC 61 ms
14,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($n,$m)=glob<>;
$a=$n>>1;
$b=$n-$a;
if($m<$n-1||$m>$a*$b){
    print"NO\n";
    exit;
}
print"YES\n";
print join($",1..$n),$/;

for(1..$m){
    if($_<$n){
	$u=$_+1>>1;     # 1   1   2   2
	$v=$n-($_>>1);  # n n-1 n-1 n-2
    }else{
	do{
	    $u=int(rand($a)+1);
	    $v=int(rand($b)+1+$a);
	}while$h{$u,$v};
    }
    $h{$u,$v}=1;
    print"$u $v\n";
}
0