結果
問題 | No.146 試験監督(1) |
ユーザー | Elk |
提出日時 | 2018-06-10 13:42:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 381 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 31,616 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 13:16:16 |
合計ジャッジ時間 | 1,298 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <stdio.h> #define MOD 1000000007 int main(){ int N, i; long long int C, D, cnt = 0; scanf("%d\n", &N); for(i = 0; i < N; i++){ scanf("%lld %lld\n", &C, &D); if(C%2 == 0){ cnt += (C/2%MOD)*(D%MOD)%MOD; }else{ cnt += ((C/2 + 1)%MOD)*(D%MOD)%MOD; } } printf("%lld\n", cnt); return 0; }