結果
| 問題 | No.296 n度寝 |
| コンテスト | |
| ユーザー |
cureskol
|
| 提出日時 | 2020-04-01 11:34:37 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| + 335µs | |
| コード長 | 170 bytes |
| 記録 | |
| コンパイル時間 | 851 ms |
| コンパイル使用メモリ | 178,700 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-30 09:48:19 |
| 合計ジャッジ時間 | 1,965 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
signed main(){
int n,h,m,t;cin>>n>>h>>m>>t;
m+=(n-1)*t;
h+=m/60;m%=60;
h%=24;
cout<<h<<endl<<m<<endl;
}
cureskol