結果
問題 | No.296 n度寝 |
ユーザー | focus |
提出日時 | 2018-01-19 01:08:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 248 bytes |
コンパイル時間 | 390 ms |
コンパイル使用メモリ | 54,112 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 15:55:22 |
合計ジャッジ時間 | 998 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
ソースコード
#include<iostream> using namespace std; int main(){ long long int N,H,M,T; cin >> N >> H >> M >> T; while(N--){ M+=T; } H+=(M/60); M%=60; H/=24; cout << H << endl << M << endl; return 0; }