結果

問題 No.1015 おつりは要らないです
ユーザー tomosuuu_outputtomosuuu_output
提出日時 2020-04-04 17:30:42
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 38,712 KB
最終ジャッジ日時 2024-07-03 07:32:20
合計ジャッジ時間 3,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,968 KB
testcase_01 AC 42 ms
31,024 KB
testcase_02 AC 41 ms
31,032 KB
testcase_03 AC 42 ms
31,264 KB
testcase_04 AC 41 ms
31,304 KB
testcase_05 AC 41 ms
30,916 KB
testcase_06 AC 42 ms
31,036 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 51 ms
36,612 KB
testcase_11 AC 53 ms
36,892 KB
testcase_12 AC 52 ms
36,704 KB
testcase_13 AC 53 ms
36,740 KB
testcase_14 AC 53 ms
37,036 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 54 ms
36,748 KB
testcase_21 AC 53 ms
36,484 KB
testcase_22 AC 53 ms
36,608 KB
testcase_23 AC 53 ms
36,204 KB
testcase_24 AC 53 ms
36,888 KB
testcase_25 AC 53 ms
36,480 KB
testcase_26 AC 53 ms
36,740 KB
testcase_27 AC 55 ms
36,604 KB
testcase_28 AC 53 ms
36,600 KB
testcase_29 AC 53 ms
36,616 KB
testcase_30 AC 41 ms
31,220 KB
testcase_31 WA -
testcase_32 AC 45 ms
33,808 KB
testcase_33 AC 54 ms
37,904 KB
testcase_34 WA -
testcase_35 AC 41 ms
31,320 KB
testcase_36 AC 41 ms
31,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
  $have = explode(" ",fgets(STDIN));
  $pay = explode(" ",fgets(STDIN));
  $total = $have[1] + $have[2]*5 + $have[3]*10;
  $total *= 1000;
  if ($have[0] < array_sum($have)-$have[0] && array_sum($pay) < $total){
      echo "Yes\n";
  }else {
      echo "No\n";
  }
?>
0