結果
| 問題 | No.296 n度寝 |
| コンテスト | |
| ユーザー |
cureskol
|
| 提出日時 | 2020-04-01 11:34:17 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 169 bytes |
| 記録 | |
| コンパイル時間 | 898 ms |
| コンパイル使用メモリ | 179,184 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-30 09:46:57 |
| 合計ジャッジ時間 | 2,084 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 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<<" "<<m<<endl;
}
cureskol