結果

問題 No.4 おもりと天秤
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-22 08:38:47
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 30,932 KB
実行使用メモリ 31,516 KB
最終ジャッジ日時 2024-07-06 04:26:34
合計ジャッジ時間 1,736 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,028 KB
testcase_01 AC 42 ms
31,152 KB
testcase_02 AC 39 ms
31,004 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 40 ms
31,120 KB
testcase_06 AC 39 ms
31,264 KB
testcase_07 AC 38 ms
31,148 KB
testcase_08 AC 39 ms
31,256 KB
testcase_09 AC 39 ms
31,192 KB
testcase_10 AC 40 ms
31,204 KB
testcase_11 AC 37 ms
31,396 KB
testcase_12 AC 37 ms
31,156 KB
testcase_13 AC 38 ms
31,428 KB
testcase_14 AC 39 ms
31,020 KB
testcase_15 AC 39 ms
31,436 KB
testcase_16 AC 40 ms
31,204 KB
testcase_17 WA -
testcase_18 AC 37 ms
31,516 KB
testcase_19 AC 38 ms
31,500 KB
testcase_20 AC 38 ms
31,488 KB
testcase_21 AC 38 ms
31,440 KB
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$weight = trim(fgets(STDIN));
$weight_array = explode(" ", trim(fgets(STDIN)));
rsort($weight_array, SORT_NUMERIC);
$left = 0;
$right = 0;
foreach ( $weight_array as $w ) {
	if ( $left <= $right ) {
		$left += $w;
	}
	else {
		$right += $w;
	}
}
if ( $left == $right ) {
	echo 'possible'.PHP_EOL;
}
else {
	echo 'impossible'.PHP_EOL;
}
0