結果

問題 No.296 n度寝
ユーザー kichirb3kichirb3
提出日時 2018-02-27 18:11:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 741 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 69,468 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-19 18:19:09
合計ジャッジ時間 1,759 ms
ジャッジサーバーID
(参考情報)
judge10 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// No.296 n度寝
// https://yukicoder.me/problems/no/296
//
using namespace std;

#include <iostream>
#include <utility>
#include <iomanip>

pair<int, int> solve(int N, int H, int M, int T);

int main() {
    int N, H, M, T;
    cin >> N >> H >> M >> T;
    pair<int, int> ans = solve(N, H, M, T);
    cout << ans.first << endl;
    cout << ans.second << endl;
}

pair<int, int> solve(int N, int H, int M, int T) {
    int wakeup_time = H * 60 + M; // 最初に起きる時間の分表記
    wakeup_time += (T * (N - 1)); // N度寝した後の時刻
    wakeup_time %= (24 * 60);   // 23:59までの範囲にして、
    int hh = wakeup_time / 60;  // 時 と 分 に分離
    int mm = wakeup_time % 60;
    return make_pair(hh, mm);
}
0