結果

問題 No.296 n度寝
ユーザー intercept6intercept6
提出日時 2020-09-17 21:11:05
言語 TypeScript
(5.4.3)
結果
WA  
実行時間 -
コード長 873 bytes
コンパイル時間 9,288 ms
コンパイル使用メモリ 254,708 KB
実行使用メモリ 42,420 KB
最終ジャッジ日時 2023-09-04 07:34:05
合計ジャッジ時間 10,128 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 76 ms
42,164 KB
testcase_04 AC 77 ms
42,248 KB
testcase_05 AC 79 ms
42,192 KB
testcase_06 AC 78 ms
42,372 KB
testcase_07 AC 78 ms
42,216 KB
testcase_08 AC 78 ms
42,308 KB
testcase_09 WA -
testcase_10 AC 77 ms
42,196 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 77 ms
42,328 KB
testcase_14 AC 78 ms
42,204 KB
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

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 addMinutes = delayMinutes % 60;
  const addHours = Math.floor(delayMinutes / 60);

  const hour = H + addHours;

  console.log(hour > 24 ? hour % 24 : hour);
  console.log(M + addMinutes);
}

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