結果

問題 No.146 試験監督(1)
ユーザー HIROPON87069639HIROPON87069639
提出日時 2016-02-27 16:36:27
言語 Python2
(2.7.18)
結果
AC  
実行時間 303 ms / 1,000 ms
コード長 212 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-09-24 11:40:18
合計ジャッジ時間 1,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# -*- coding: utf-8 -*-
import math
N = input()
cnt = 0
mod = 1000000007
for i in range(N):
    C, D = map(int, raw_input().split())
    C = ((C+1)//2) % mod
    D %= mod
    cnt += (C * D) % mod
print cnt % mod
0