結果

問題 No.231 めぐるはめぐる (1)
ユーザー 綾地寧々綾地寧々
提出日時 2015-06-26 22:35:17
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 751 bytes
コンパイル時間 2,686 ms
コンパイル使用メモリ 30,624 KB
実行使用メモリ 31,016 KB
最終ジャッジ日時 2024-11-07 23:32:26
合計ジャッジ時間 4,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
30,824 KB
testcase_01 AC 42 ms
30,880 KB
testcase_02 AC 42 ms
30,920 KB
testcase_03 AC 41 ms
30,544 KB
testcase_04 AC 42 ms
30,728 KB
testcase_05 AC 42 ms
30,712 KB
testcase_06 AC 43 ms
30,696 KB
testcase_07 AC 41 ms
30,784 KB
testcase_08 AC 42 ms
31,016 KB
testcase_09 AC 43 ms
30,664 KB
testcase_10 AC 43 ms
30,780 KB
testcase_11 AC 43 ms
30,556 KB
testcase_12 AC 43 ms
30,868 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// yukicoder No.231
define("DEATH_PENALTY", 30000);
define("NEED_EXP", DEATH_PENALTY*100);
define("PLAY_TIME", 6);
$dungeons = trim(fgets(STDIN));
$exp_array = array();
$death_array = array();
$get_exp = array_fill(0,$dungeons,0);
$max_exp = 0;
$max_dungeons = FALSE;
for ( $i=0; $i<$dungeons; $i++ ) {
	list($exp_array[], $death_array[]) = explode(" ", trim(fgets(STDIN)));
	$get_exp[$i] = $exp_array[$i] - ($death_array[$i] * DEATH_PENALTY);
	$max_exp = max($get_exp[$i], $max_exp);
	if ( $max_exp == $get_exp[$i] ) {
		$max_dungeons = $i;
	}
}
if ( ($max_dungeons === FALSE) || ($max_exp * PLAY_TIME) < NEED_EXP ) {
	echo 'NO'.PHP_EOL;
}
else {
	echo 'YES'.PHP_EOL;
	for ( $i=0; $i<PLAY_TIME; $i++ ) {
		echo ($max_dungeons+1) .PHP_EOL;
	}
}
0