結果

問題 No.620 ぐるぐるぐるりん
ユーザー tailstails
提出日時 2017-12-20 01:56:28
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-05-09 13:23:10
合計ジャッジ時間 2,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,272 KB
testcase_01 AC 8 ms
6,272 KB
testcase_02 WA -
testcase_03 AC 7 ms
6,400 KB
testcase_04 AC 7 ms
6,272 KB
testcase_05 AC 7 ms
6,400 KB
testcase_06 AC 7 ms
6,400 KB
testcase_07 AC 8 ms
6,400 KB
testcase_08 AC 7 ms
6,400 KB
testcase_09 AC 7 ms
6,400 KB
testcase_10 AC 7 ms
6,272 KB
testcase_11 AC 8 ms
6,400 KB
testcase_12 AC 7 ms
6,400 KB
testcase_13 AC 7 ms
6,400 KB
testcase_14 AC 7 ms
6,272 KB
testcase_15 AC 7 ms
6,400 KB
testcase_16 AC 7 ms
6,272 KB
testcase_17 AC 8 ms
6,272 KB
testcase_18 AC 7 ms
6,400 KB
testcase_19 AC 7 ms
6,272 KB
testcase_20 AC 8 ms
6,272 KB
testcase_21 AC 7 ms
6,272 KB
testcase_22 AC 7 ms
6,272 KB
testcase_23 AC 7 ms
6,528 KB
testcase_24 AC 8 ms
6,400 KB
testcase_25 AC 8 ms
6,272 KB
testcase_26 WA -
testcase_27 AC 8 ms
6,144 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::p" used only once: possible typo at Main.pl line 3.
Main.pl syntax OK

ソースコード

diff #

$n=<>;
for(1..$n){
	($t,$p,$w,$v,$gx,$gy)=glob<>;
	$v+=1;
	$r=sqrt($v*$v+$w*$w);
	for(0..$t-1){
		$z+=($r**($t-1-$_))**2
	}
	$a=atan2($w,$v);
	{
		$c=cos($a*$t);
		$s=sin($a*$t);
		$dx=($gx-$c*$r**$t)/$z;
		$dy=($gy-$s*$r**$t)/$z;
	}
	for(0..$t-1){
		$c=cos($a*($_-($t-1)));
		$s=sin($a*($_-($t-1)));
		$x=($dx*$c-$dy*$s)*$r**($t-1-$_);
		$y=($dx*$s+$dy*$c)*$r**($t-1-$_);
		print $x," ",$y,"\n";
	}
}
0