結果

問題 No.232 めぐるはめぐる (2)
ユーザー 綾地寧々綾地寧々
提出日時 2015-06-26 23:18:12
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 1,007 bytes
コンパイル時間 979 ms
コンパイル使用メモリ 30,564 KB
実行使用メモリ 36,280 KB
最終ジャッジ日時 2024-07-07 18:26:45
合計ジャッジ時間 4,440 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
32,008 KB
testcase_01 AC 299 ms
34,956 KB
testcase_02 WA -
testcase_03 AC 246 ms
34,360 KB
testcase_04 AC 35 ms
32,148 KB
testcase_05 AC 33 ms
32,148 KB
testcase_06 AC 34 ms
32,144 KB
testcase_07 AC 32 ms
32,020 KB
testcase_08 AC 190 ms
36,280 KB
testcase_09 AC 34 ms
32,148 KB
testcase_10 AC 35 ms
32,016 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 35 ms
32,016 KB
testcase_15 AC 33 ms
32,148 KB
testcase_16 AC 32 ms
32,144 KB
testcase_17 AC 32 ms
32,144 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 35 ms
32,016 KB
testcase_22 AC 33 ms
32,276 KB
testcase_23 AC 32 ms
32,148 KB
testcase_24 AC 34 ms
32,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
define("INPUT_UP", "^");
define("INPUT_DOWN", "v");
define("INPUT_LEFT", "<");
define("INPUT_RIGHT", ">");
list($t, $a, $b) = explode(" ",trim(fgets(STDIN)));
if ( max($a, $b) > $t ) {
	echo 'NO'.PHP_EOL;
	return;
}
$move_string = array_fill(0,$t,"");
// 上方向判定
for ( $i=0; $i<$a; $i++ ) {
	$move_string[$i] = INPUT_UP.$move_string[$i];
}
// 右方向判定
for ( $i=0; $i<$b; $i++ ) {
	$move_string[$t-$i-1] = INPUT_RIGHT.$move_string[$t-$i-1];
}
// 未入力タイミング回数のカウント
$no_input_count = 0;
foreach ( $move_string as $str ) {
	if ( strlen($str) == 0 ) {
		$no_input_count++;
	}
}
// 未入力タイミングが奇数回ならあきらめてもらう
if ( $no_input_count % 2 ) {
	echo 'NO'.PHP_EOL;
	return;
}
// 答え出力
echo 'YES'.PHP_EOL;
foreach ( $move_string as $str ) {
	if ( strlen($str) > 0 ) {
		echo $str;
	}
	else {
		if ( !($no_input_count % 2) ) {
			echo INPUT_RIGHT;
		}
		else {
			echo INPUT_LEFT;
		}
		$no_input_count--;
	}
	echo PHP_EOL;
}
0