結果

問題 No.146 試験監督(1)
ユーザー ytftytft
提出日時 2021-03-16 15:36:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 1,000 ms
コード長 124 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-11-08 01:33:03
合計ジャッジ時間 1,441 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
75,904 KB
testcase_01 AC 150 ms
76,032 KB
testcase_02 AC 150 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=0
MOD=10**9+7
for i in range(N):
    C,D=map(int,input().split())
    ans=(ans+(C+1)//2*D)%MOD
print(ans)
0