結果
問題 | No.401 数字の渦巻き |
ユーザー | sam_kino |
提出日時 | 2016-08-06 10:25:42 |
言語 | PHP (8.3.4) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 2,188 bytes |
コンパイル時間 | 2,632 ms |
コンパイル使用メモリ | 32,088 KB |
実行使用メモリ | 31,480 KB |
最終ジャッジ日時 | 2024-11-07 02:58:21 |
合計ジャッジ時間 | 5,229 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
31,288 KB |
testcase_01 | AC | 42 ms
31,044 KB |
testcase_02 | AC | 42 ms
30,988 KB |
testcase_03 | AC | 43 ms
31,208 KB |
testcase_04 | AC | 43 ms
30,980 KB |
testcase_05 | AC | 42 ms
31,280 KB |
testcase_06 | AC | 43 ms
31,216 KB |
testcase_07 | AC | 43 ms
31,180 KB |
testcase_08 | AC | 42 ms
31,132 KB |
testcase_09 | AC | 42 ms
31,440 KB |
testcase_10 | AC | 44 ms
31,264 KB |
testcase_11 | AC | 43 ms
31,404 KB |
testcase_12 | AC | 43 ms
31,416 KB |
testcase_13 | AC | 44 ms
31,024 KB |
testcase_14 | AC | 43 ms
31,288 KB |
testcase_15 | AC | 43 ms
31,376 KB |
testcase_16 | AC | 43 ms
30,988 KB |
testcase_17 | AC | 45 ms
31,256 KB |
testcase_18 | AC | 43 ms
31,288 KB |
testcase_19 | AC | 43 ms
31,064 KB |
testcase_20 | AC | 43 ms
31,436 KB |
testcase_21 | AC | 44 ms
30,900 KB |
testcase_22 | AC | 44 ms
30,992 KB |
testcase_23 | AC | 43 ms
30,968 KB |
testcase_24 | AC | 44 ms
31,104 KB |
testcase_25 | AC | 45 ms
31,480 KB |
testcase_26 | AC | 45 ms
31,064 KB |
testcase_27 | AC | 43 ms
31,408 KB |
testcase_28 | AC | 44 ms
31,148 KB |
testcase_29 | AC | 45 ms
31,176 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $n=trim(fgets(STDIN)); //初期設定 for($i=0;$i<$n;$i++){ for($k=0;$k<$n;$k++){ $anss[$i][$k]=0;//配列に同じ値セット } } $num=1; $st=0; //Start $yoko_ofset=0; //Tate change $tate_ofset=0; $yoko=0; $tate=0; $width=$n-1; //$n-1; // n-1 幅・横 while(1){ for($i=0;$i<$width;$i++){ //上・横 --->A //$yoko_ofset=0; $anss[$yoko+$yoko_ofset][$tate+$tate_ofset]=$num; //echo "A:".$anss[$yoko+$yoko_ofset][$tate+$tate_ofset].PHP_EOL; $num++; $yoko++; if($num>=$n*$n+1) break 2; } //----------------------------------------------------- for($i=0;$i<$width;$i++){ //down B //$yoko_ofset=0; $anss[$yoko+$yoko_ofset][$tate+$tate_ofset]=$num; //echo "B:".$anss[$yoko+$yoko_ofset][$tate+$tate_ofset].PHP_EOL; $num++; $tate++; if($num>=$n*$n+1) break 2; } //------------------------------------------------------ for($i=0;$i<$width;$i++){ //下・横 <--- C //$yoko_ofset=0; $anss[$yoko+$yoko_ofset][$tate+$tate_ofset]=$num; //echo "C:".$anss[$yoko+$yoko_ofset][$tate+$tate_ofset].PHP_EOL; $num++; $yoko--; if($num>=$n*$n+1) break 2; } //------------------------------------------------------- for($i=0;$i<$width;$i++){ //down D //$yoko_ofset=0; $anss[$yoko+$yoko_ofset][$tate+$tate_ofset]=$num; //echo "D:".$anss[$yoko+$yoko_ofset][$tate+$tate_ofset].PHP_EOL; $num++; $tate--; if($num>=$n*$n+1) break 2; } if($width==0){ $anss[$yoko+$yoko_ofset][$tate+$tate_ofset]=$num; //echo "END:".$anss[$yoko+$yoko_ofset][$tate+$tate_ofset].PHP_EOL; $num++; } $st=$st+1; $yoko_ofset=$yoko_ofset+1; // 横移動 $tate_ofset=$tate_ofset+1; $width=$width-2; if($num>=$n*$n+1) break; } // 表示 for($i=0;$i<$n;$i++){ for($k=0;$k<$n;$k++){ printf("%03d ", $anss[$k][$i]); if($k==$n-1){ echo PHP_EOL; } } }