結果
| 問題 |
No.296 n度寝
|
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2016-04-02 14:59:44 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 674 bytes |
| コンパイル時間 | 1,587 ms |
| コンパイル使用メモリ | 83,196 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-07 02:44:54 |
| 合計ジャッジ時間 | 1,229 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
ソースコード
/* -*- coding: utf-8 -*-
*
* 296.cc: No.296 n度寝 - yukicoder
*/
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
using namespace std;
/* constant */
/* typedef */
/* global variables */
/* subroutines */
/* main */
int main() {
int n, h, m, t;
cin >> n >> h >> m >> t;
int shm = h * 60 + m;
int ehm = (shm + (n - 1) * t) % (24 * 60);
printf("%d\n%d\n", ehm / 60, ehm % 60);
return 0;
}
tnakao0123