結果
問題 | No.146 試験監督(1) |
ユーザー | TLwiegehtt |
提出日時 | 2015-07-07 19:00:56 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 346 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 20,224 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-08 01:30:47 |
合計ジャッジ時間 | 1,291 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d", &n); | ^~~~~~~~~~~~~~~ main.c:12:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%lld %lld", &c, &d); // c chair, d desk | ^~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void){ int i,n; long long int sum=0; scanf("%d", &n); for(i=0;i<n;i++){ long long int tmp; long long int c, d; scanf("%lld %lld", &c, &d); // c chair, d desk tmp = c/2; if( c%2 == 1){ tmp += 1; } sum = sum + (tmp*d); sum = sum%(1000000000+7); } printf("%lld\n", sum); return 0; }