結果

問題 No.1015 おつりは要らないです
ユーザー tomosuuu_outputtomosuuu_output
提出日時 2020-04-04 16:50:15
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 30,820 KB
実行使用メモリ 37,772 KB
最終ジャッジ日時 2024-07-03 07:29:21
合計ジャッジ時間 2,951 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,148 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 40 ms
31,008 KB
testcase_04 AC 40 ms
31,036 KB
testcase_05 AC 38 ms
30,984 KB
testcase_06 AC 39 ms
30,924 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 47 ms
36,744 KB
testcase_11 AC 47 ms
36,772 KB
testcase_12 AC 47 ms
36,332 KB
testcase_13 AC 47 ms
36,752 KB
testcase_14 AC 47 ms
37,168 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 46 ms
36,884 KB
testcase_21 AC 46 ms
36,624 KB
testcase_22 AC 47 ms
36,616 KB
testcase_23 AC 47 ms
36,596 KB
testcase_24 AC 47 ms
36,640 KB
testcase_25 AC 48 ms
36,492 KB
testcase_26 AC 47 ms
36,624 KB
testcase_27 AC 47 ms
36,484 KB
testcase_28 AC 46 ms
36,228 KB
testcase_29 AC 46 ms
36,756 KB
testcase_30 AC 38 ms
31,280 KB
testcase_31 AC 43 ms
33,804 KB
testcase_32 WA -
testcase_33 AC 48 ms
37,772 KB
testcase_34 AC 39 ms
30,920 KB
testcase_35 AC 38 ms
31,168 KB
testcase_36 AC 38 ms
30,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
  fscanf(STDIN, "%d %d %d %d", $n, $x, $y, $z);
  $line2 = fgets(STDIN);
  $mon = $x*1000 + $y*5000 + $z*10000;
  $pay = explode(" ",$line2);
  $total_pay = array_sum($pay);
  if ($mon > $total_pay) {
      echo "Yes\n";
  } else {
      echo "No\n";
  }
  
?>
0