結果

問題 No.620 ぐるぐるぐるりん
ユーザー tailstails
提出日時 2017-12-20 02:42:24
言語 Perl
(5.38.2)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 368 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-16 06:55:09
合計ジャッジ時間 2,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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