結果

問題 No.146 試験監督(1)
ユーザー togatogatogatoga
提出日時 2015-09-02 23:46:55
言語 Python2
(2.7.18)
結果
AC  
実行時間 323 ms / 1,000 ms
コード長 200 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 6,648 KB
実行使用メモリ 9,348 KB
最終ジャッジ日時 2023-09-26 02:28:42
合計ジャッジ時間 2,022 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
9,136 KB
testcase_01 AC 318 ms
9,240 KB
testcase_02 AC 323 ms
9,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
mod = 10 ** 9 + 7
N = input()
res = 0
for i in range(N):
    C,D = map(int, raw_input().split())
    a = int(((C + 1) / 2)) % mod
    b = D % mod
    res += a * b
    res %= mod
print res
0