結果

問題 No.296 n度寝
ユーザー Kmcode1Kmcode1
提出日時 2015-11-06 22:21:40
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 17 ms / 1,000 ms
コード長 710 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 95,080 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 22:14:07
合計ジャッジ時間 1,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cctype>
#include<cstdlib>
#include<algorithm>
#include<bitset>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<map>
#include<set>
#include<stack>
#include<cmath>
#include<sstream>
#include<fstream>
#include<iomanip>
#include<ctime>
#include<complex>
#include<functional>
#include<climits>
#include<cassert>
#include<iterator>
#include<unordered_set>
#include<unordered_map>
using namespace std;
int n;
int h;
int m;
int t;
int main() {
	cin >> n >> h >> m >> t;
	int k = t*(n-1);
	m += k;
	while (m >= 60) {
		h++;
		m -= 60;
		if (h == 24) {
			h = 0;
		}
	}
	cout << h << endl << m << endl;
	return 0;
}
0