結果

問題 No.296 n度寝
ユーザー icchiposticchipost
提出日時 2021-12-18 15:59:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 1,484 ms
コンパイル使用メモリ 163,912 KB
実行使用メモリ 4,356 KB
最終ジャッジ日時 2023-10-13 17:58:11
合計ジャッジ時間 2,453 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
4,352 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 1 ms
4,352 KB
testcase_06 AC 2 ms
4,352 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 2 ms
4,352 KB
testcase_09 WA -
testcase_10 AC 1 ms
4,352 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
4,356 KB
testcase_14 AC 2 ms
4,352 KB
testcase_15 AC 2 ms
4,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); i++)
using namespace std;
using ll = long long;
using pii = pair<int, int>;

int main() {
  int n, h, m, t;
  cin >> n >> h >> m >> t;
  int nh = (h + t * (n - 1) / 60) % 24;
  int nm = (m + t * (n - 1)) % 60;
  cout << nh << endl;
  cout << nm << endl;
  return 0;
}
0