結果

問題 No.32 貯金箱の憂鬱
ユーザー f Oxf Ox
提出日時 2021-04-13 17:40:56
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 504 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 40,944 KB
最終ジャッジ日時 2024-06-29 22:45:47
合計ジャッジ時間 2,551 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
38,784 KB
testcase_01 AC 60 ms
38,784 KB
testcase_02 AC 62 ms
38,912 KB
testcase_03 AC 63 ms
38,656 KB
testcase_04 AC 61 ms
38,656 KB
testcase_05 AC 63 ms
40,944 KB
testcase_06 AC 59 ms
38,784 KB
testcase_07 AC 62 ms
38,656 KB
testcase_08 AC 63 ms
38,784 KB
testcase_09 AC 62 ms
38,656 KB
testcase_10 AC 61 ms
38,912 KB
testcase_11 AC 62 ms
38,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
  const data = input.split("\n");
  let L = Number(data[0]);
  let M = Number(data[1]);
  let N = Number(data[2]);

  M = M + Math.floor(N/25);
  if (N/25>=1) {
    N = N%25; // ここでNの枚数が確定する。
  }

  L = L + Math.floor(M/4);
  if (M/4>=1) {
    M = M%4; // ここでMの枚数が確定する。
  }
  
  if (L/10>=1) {
    L = L%10; // ここでLの枚数が確定する。
  }

  console.log(N+M+L);
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0