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