結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 7 ms
6,816 KB
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 7 ms
6,940 KB
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 7 ms
6,944 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 7 ms
6,940 KB
testcase_14 AC 8 ms
6,944 KB
testcase_15 AC 6 ms
6,944 KB
testcase_16 AC 7 ms
6,944 KB
testcase_17 AC 6 ms
6,944 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 7 ms
6,944 KB
testcase_20 AC 6 ms
6,940 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 7 ms
6,944 KB
testcase_23 AC 7 ms
6,944 KB
testcase_24 AC 6 ms
6,940 KB
testcase_25 AC 7 ms
6,940 KB
testcase_26 AC 38 ms
6,940 KB
testcase_27 RE -
testcase_28 AC 40 ms
6,940 KB
testcase_29 AC 43 ms
6,940 KB
testcase_30 AC 48 ms
6,940 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