結果
問題 | No.296 n度寝 |
ユーザー | a2011404 |
提出日時 | 2017-02-28 16:38:18 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 238 bytes |
コンパイル時間 | 977 ms |
コンパイル使用メモリ | 19,968 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 00:05:44 |
合計ジャッジ時間 | 2,127 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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 | AC | 0 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 0 ms
6,944 KB |
testcase_15 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%d%d%d%d",&N,&H,&M,&T); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int N,H,M,T; scanf("%d%d%d%d",&N,&H,&M,&T); int n,h,m,t; h=H; m=M+(T*(N-1)); if(m<60){ printf("%d\n",h); printf("%d\n",m); }else if(m>=60) printf("%d\n",h+1); printf("%d\n",m-60); return 0; }