結果

問題 No.471 直列回転機
ユーザー tailstails
提出日時 2016-12-21 00:09:56
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,206 ms / 3,141 ms
コード長 263 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 29,520 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:14:40
合計ジャッジ時間 31,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,220 KB
testcase_01 AC 26 ms
25,196 KB
testcase_02 AC 25 ms
24,812 KB
testcase_03 AC 24 ms
24,940 KB
testcase_04 AC 28 ms
24,940 KB
testcase_05 AC 35 ms
25,580 KB
testcase_06 AC 28 ms
24,940 KB
testcase_07 AC 32 ms
24,812 KB
testcase_08 AC 162 ms
24,812 KB
testcase_09 AC 148 ms
25,196 KB
testcase_10 AC 103 ms
24,940 KB
testcase_11 AC 414 ms
25,032 KB
testcase_12 AC 961 ms
27,992 KB
testcase_13 AC 928 ms
28,504 KB
testcase_14 AC 1,105 ms
29,016 KB
testcase_15 AC 1,193 ms
29,016 KB
testcase_16 AC 31 ms
25,220 KB
testcase_17 AC 24 ms
24,812 KB
testcase_18 AC 24 ms
24,812 KB
testcase_19 AC 25 ms
25,196 KB
testcase_20 AC 1,124 ms
29,392 KB
testcase_21 AC 195 ms
25,208 KB
testcase_22 AC 942 ms
28,240 KB
testcase_23 AC 962 ms
28,368 KB
testcase_24 AC 553 ms
25,552 KB
testcase_25 AC 139 ms
25,196 KB
testcase_26 AC 1,124 ms
29,136 KB
testcase_27 AC 524 ms
25,552 KB
testcase_28 AC 654 ms
26,320 KB
testcase_29 AC 706 ms
26,704 KB
testcase_30 AC 256 ms
24,824 KB
testcase_31 AC 1,109 ms
28,752 KB
testcase_32 AC 898 ms
27,856 KB
testcase_33 AC 708 ms
26,960 KB
testcase_34 AC 1,032 ms
28,624 KB
testcase_35 AC 209 ms
24,824 KB
testcase_36 AC 442 ms
24,912 KB
testcase_37 AC 127 ms
24,952 KB
testcase_38 AC 182 ms
25,196 KB
testcase_39 AC 335 ms
25,208 KB
testcase_40 AC 804 ms
27,088 KB
testcase_41 AC 1,206 ms
29,520 KB
testcase_42 AC 721 ms
26,320 KB
testcase_43 AC 1,051 ms
28,872 KB
testcase_44 AC 89 ms
25,436 KB
testcase_45 AC 701 ms
26,568 KB
testcase_46 AC 744 ms
26,960 KB
testcase_47 AC 1,104 ms
28,624 KB
testcase_48 AC 902 ms
27,864 KB
testcase_49 AC 860 ms
27,728 KB
testcase_50 AC 985 ms
28,880 KB
testcase_51 AC 426 ms
25,080 KB
testcase_52 AC 39 ms
25,068 KB
testcase_53 AC 36 ms
24,812 KB
testcase_54 AC 41 ms
25,196 KB
testcase_55 AC 244 ms
25,580 KB
testcase_56 AC 165 ms
25,196 KB
testcase_57 AC 101 ms
25,196 KB
testcase_58 AC 87 ms
25,196 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$|=1;$\=$/;
$m=<>;
$l[$_]=<> for 0..$m-1;
print"? 0 0";
($x00,$y00)=glob<>;
print"? 1 0";
($x10,$y10)=glob<>;
print"? 0 1";
($x01,$y01)=glob<>;
print"!";
for(@l){
	($x,$y)=/\S+/g;
	print $x00+$x*($x10-$x00)+$y*($x01-$x00),$",$y00+$x*($y10-$y00)+$y*($y01-$y00);
}
0