結果
問題 | No.804 野菜が苦手 |
ユーザー | mondo |
提出日時 | 2019-08-05 14:00:58 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 441 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 32,272 KB |
実行使用メモリ | 32,532 KB |
最終ジャッジ日時 | 2024-07-18 13:32:33 |
合計ジャッジ時間 | 1,380 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 41 ms
32,400 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 34 ms
32,400 KB |
testcase_06 | AC | 33 ms
32,396 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 31 ms
32,212 KB |
testcase_15 | AC | 32 ms
32,276 KB |
testcase_16 | AC | 32 ms
32,400 KB |
testcase_17 | AC | 31 ms
32,272 KB |
testcase_18 | AC | 32 ms
32,528 KB |
testcase_19 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $yukiHotel = trim(fgets(STDIN)); $insteadHotel = trim(fgets(STDIN)); $count = trim(fgets(STDIN)); $number = array(); for ($i = 0; $i < $count; $i++) { $number[] = trim(fgets(STDIN)); } $double = array_count_values($number); $ans = 0; foreach ($double as $value){ if ($value > 1) { $doubleCount = $value -1; $ans += ($doubleCount * ($yukiHotel + $insteadHotel)); } else { $ans = 0; } } echo $ans;