結果
問題 | No.146 試験監督(1) |
ユーザー | Nasatame |
提出日時 | 2017-03-29 08:43:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 432 bytes |
コンパイル時間 | 442 ms |
コンパイル使用メモリ | 54,904 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 14:45:05 |
合計ジャッジ時間 | 1,591 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <iostream> using namespace std; using ll = unsigned long long int; int main(void){ // Here your code ! int n; cin >> n; ll res = 0; for(int i = 0; i < n; i++){ ll c,d; cin >> c >> d; c %= 1000000007; d %= 1000000007; c = (c+1)/2; res += c*d; res %= 1000000007; } cout << res << endl; }