結果

問題 No.586 ダブルブッキング
ユーザー nishirioonishirioo
提出日時 2017-11-26 15:06:11
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 29,568 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 13:48:32
合計ジャッジ時間 569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int main() {
int h1, h2,hnum,i,oo=0,son;
int h[1000];

	scanf("%d", &h1);
	scanf("%d", &h2);
	scanf("%d", &hnum);

	for (i = 0; i < hnum; i++) {
		scanf("%d",& h[i]);
	}
	for (i = 1; i < hnum; i++) {
		if (h[i] == h[i - 1]) {
			oo++;
		}
	}
	son = oo*(h1 + h2);
	

	printf("%d\n", son);
	
	return 0;
}
0