結果

問題 No.146 試験監督(1)
ユーザー suppy193suppy193
提出日時 2015-06-17 11:32:32
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 20,224 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 03:29:11
合計ジャッジ時間 849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d", &N);
      |         ^~~~~~~~~~~~~~~
main.c:9:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |                 scanf("%lld%lld", &C, &D);
      |                 ^~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void) {
	int i, N;
	long long int C, D, sum;
	scanf("%d", &N);
	sum = 0;
	for(i = 1;i <= N;i++){
		scanf("%lld%lld", &C, &D);
		sum += ((C + 1) / 2) * D;
	}
	printf("%lld\n", sum);
	
	return 0;
}
0