結果
問題 | No.146 試験監督(1) |
ユーザー | bal4u |
提出日時 | 2019-04-11 16:54:24 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 505 bytes |
コンパイル時間 | 1,172 ms |
コンパイル使用メモリ | 29,440 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 17:59:35 |
合計ジャッジ時間 | 2,326 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
// yukicoder: No.146 試験監督(1) // 2019.4.11 bal4u #include <stdio.h> #include <stdlib.h> #if 0 #define gc() getchar_unlocked() #else #define gc() getchar() #endif long long in() { int c = gc(); long long n = 0; do n = 10 * n + (c & 0xf), c = gc(); while (c >= '0'); return n; } #define M 1000000007 int main() { int N; long long c, d, ans; N = (int)in(); ans = 0; while (N--) { c = ((in()+1)>>1) % M, d = in() % M; ans += (c * d) % M; } printf("%d\n", (int)ans); return 0; }