結果

問題 No.296 n度寝
ユーザー intercept6intercept6
提出日時 2020-09-17 21:47:04
言語 TypeScript
(5.4.3)
結果
AC  
実行時間 79 ms / 1,000 ms
コード長 1,122 bytes
コンパイル時間 7,316 ms
コンパイル使用メモリ 256,100 KB
実行使用メモリ 42,424 KB
最終ジャッジ日時 2023-09-04 07:38:34
合計ジャッジ時間 9,046 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
42,128 KB
testcase_01 AC 78 ms
42,108 KB
testcase_02 AC 77 ms
42,152 KB
testcase_03 AC 77 ms
41,896 KB
testcase_04 AC 77 ms
42,052 KB
testcase_05 AC 78 ms
42,424 KB
testcase_06 AC 77 ms
42,156 KB
testcase_07 AC 78 ms
42,188 KB
testcase_08 AC 76 ms
41,944 KB
testcase_09 AC 77 ms
41,940 KB
testcase_10 AC 77 ms
41,940 KB
testcase_11 AC 78 ms
41,940 KB
testcase_12 AC 78 ms
41,940 KB
testcase_13 AC 78 ms
42,308 KB
testcase_14 AC 77 ms
41,936 KB
testcase_15 AC 79 ms
42,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import { readFileSync } from 'fs';

// Nはユキさんが度寝することを示します。
// Hはアラームが最初に鳴る時刻の、24時間制における時の値です。
// Mはアラームが最初に鳴る時刻の、分の値です。
// Tは最初にアラームが鳴った後、アラームが繰り返される間隔の、分単位の値です。

function Main(input: string) {
  const data = input.split('\n');
  const firstLine = data[0].split(' ').map(Number);

  const N = firstLine[0];
  const H = firstLine[1];
  const M = firstLine[2];
  const T = firstLine[3];

  const delayMinutes = (N - 1) * T;

  const addHours = Math.floor(delayMinutes / 60);
  const addMinutes = delayMinutes % 60;

  let getUpHour = (H + addHours) % 24;
  let getUpMinutes = M + addMinutes;

  if (getUpMinutes >= 60) {
    getUpHour++;
    getUpMinutes = getUpMinutes % 60;
  }

  // if (getUpMinutes === 60) {
  //   getUpHour++;
  //   getUpMinutes = 0;
  // }

  if (getUpHour === 24) {
    getUpHour = 0;
  }

  console.log(getUpHour);
  console.log(getUpMinutes);
}

Main(readFileSync('/dev/stdin', 'utf8'));
0