結果
問題 |
No.296 n度寝
|
ユーザー |
👑 |
提出日時 | 2020-01-19 13:37:01 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 168 bytes |
コンパイル時間 | 501 ms |
コンパイル使用メモリ | 62,848 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 21:41:16 |
合計ジャッジ時間 | 1,189 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 16 |
ソースコード
#include <iostream> using namespace std; int main(){ int a,b,c,d;cin>>a>>b>>c>>d; c+= (a-1)*d; d += c/60; cout << d << endl; cout << c%60 << endl; }