結果
問題 | No.620 ぐるぐるぐるりん |
ユーザー | tails |
提出日時 | 2017-12-20 01:15:06 |
言語 | Perl (5.38.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 389 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 7,068 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-09 13:20:04 |
合計ジャッジ時間 | 3,718 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
6,400 KB |
testcase_01 | AC | 8 ms
6,528 KB |
testcase_02 | AC | 8 ms
6,272 KB |
testcase_03 | AC | 8 ms
6,528 KB |
testcase_04 | AC | 7 ms
6,400 KB |
testcase_05 | AC | 8 ms
6,528 KB |
testcase_06 | AC | 8 ms
6,528 KB |
testcase_07 | AC | 8 ms
6,528 KB |
testcase_08 | AC | 7 ms
6,400 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 7 ms
6,400 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 8 ms
6,400 KB |
testcase_23 | WA | - |
testcase_24 | AC | 8 ms
6,528 KB |
testcase_25 | AC | 8 ms
6,528 KB |
testcase_26 | AC | 40 ms
6,528 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 39 ms
6,528 KB |
testcase_30 | AC | 39 ms
6,272 KB |
コンパイルメッセージ
Name "main::q" used only once: possible typo at Main.pl line 3. Name "main::p" used only once: possible typo at Main.pl line 4. Main.pl syntax OK
ソースコード
$n=<>; for(1..$n){ $q=0; ($t,$p,$w,$v,$gx,$gy)=glob<>; $v+=1; $r=sqrt($v*$v+$w*$w); if($r==1){ $z=$t; }else{ $z=($r**$t-1)/($r-1); } $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; $y=$dx*$s+$dy*$c; print $x," ",$y,"\n"; } }