結果

問題 No.920 あかあお
ユーザー seaside0002seaside0002
提出日時 2019-12-30 12:11:46
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 2,852 ms
コンパイル使用メモリ 30,536 KB
実行使用メモリ 31,292 KB
最終ジャッジ日時 2024-11-08 00:35:05
合計ジャッジ時間 4,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,884 KB
testcase_01 AC 41 ms
31,112 KB
testcase_02 AC 40 ms
31,036 KB
testcase_03 AC 40 ms
30,772 KB
testcase_04 AC 41 ms
31,168 KB
testcase_05 AC 40 ms
30,820 KB
testcase_06 WA -
testcase_07 AC 39 ms
30,992 KB
testcase_08 AC 38 ms
31,176 KB
testcase_09 AC 38 ms
30,996 KB
testcase_10 AC 39 ms
31,064 KB
testcase_11 AC 38 ms
30,964 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
// 連想配列で処理
list($r, $b, $w) = explode(" ", trim(fgets(STDIN)));

$balls = array(
	'red' => $r,
	'blue' => $b,
	'white' => $w,
	'violet' => 0
);

makeViolet($balls);

echo $balls['violet'];


function makeViolet(&$balls): void{
	$violets = ($balls['red'] + $balls['blue'] + $balls['white']) / 2;
	$balls['violet'] = floor($violets);
}
0