結果

問題 No.296 n度寝
ユーザー ykringumykringum
提出日時 2019-04-26 00:16:25
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-01 13:58:03
合計ジャッジ時間 969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 0 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:3:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
    3 |         scanf("%d %d %d %d", &n, &h, &m, &t);
      |         ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
  +++ |+#include <stdio.h>
    1 | int main(void) {
main.c:3:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
    3 |         scanf("%d %d %d %d", &n, &h, &m, &t);
      |         ^~~~~
main.c:3:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:5:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
    5 |         printf("%d\n %d",(h+m/60)% 4, m%60);
      |         ^~~~~~
main.c:5:9: note: include '<stdio.h>' or provide a declaration of 'printf'
main.c:5:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch]
main.c:5:9: note: include '<stdio.h>' or provide a declaration of 'printf'

ソースコード

diff #

int main(void) {
	int n, h, m, t;
	scanf("%d %d %d %d", &n, &h, &m, &t);
	m += (n-1) * t;
	printf("%d\n %d",(h+m/60)% 4, m%60);
	return 0;
}
0