結果

問題 No.1015 おつりは要らないです
ユーザー tomosuuu_outputtomosuuu_output
提出日時 2020-04-04 16:46:30
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 38,840 KB
最終ジャッジ日時 2024-07-03 07:25:02
合計ジャッジ時間 3,717 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
30,968 KB
testcase_02 AC 39 ms
31,040 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 35 ms
31,004 KB
testcase_08 AC 38 ms
31,084 KB
testcase_09 AC 40 ms
31,032 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 47 ms
36,596 KB
testcase_16 AC 49 ms
37,004 KB
testcase_17 AC 49 ms
37,032 KB
testcase_18 AC 51 ms
36,876 KB
testcase_19 AC 51 ms
36,740 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 39 ms
31,008 KB
testcase_31 WA -
testcase_32 AC 44 ms
33,616 KB
testcase_33 AC 50 ms
37,900 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 38 ms
30,892 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
  $line = fgets(STDIN);
  $money = explode(" ",$line);
  $line2 = fgets(STDIN);
  $pay = explode(" ",$line2);
  $paypay = array_sum($pay);
  $mon = array_sum($money) - $money[0];
  if ($mon > $paypay) {
      echo "Yes\n";
  } else {
      echo "No\n";
  }
  
?>
0