結果
問題 |
No.146 試験監督(1)
|
ユーザー |
![]() |
提出日時 | 2022-11-03 23:40:09 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 174 ms / 1,000 ms |
コード長 | 285 bytes |
コンパイル時間 | 1,983 ms |
コンパイル使用メモリ | 193,404 KB |
最終ジャッジ日時 | 2025-02-08 17:05:18 |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 3 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int N; cin>>N; int ans = 0; int mod = 1e9+7; for(int i=0;i<N;i++){ int a,b; cin>>a>>b; b %= mod; ans += ((a+1)/2)%mod*b%mod; ans %= mod; } cout<<ans<<endl; }