結果

問題 No.146 試験監督(1)
ユーザー YugimnYugimn
提出日時 2022-05-15 22:13:25
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 584 bytes
コンパイル時間 1,716 ms
コンパイル使用メモリ 185,408 KB
実行使用メモリ 4,476 KB
最終ジャッジ日時 2023-10-11 11:17:47
合計ジャッジ時間 2,895 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:12: 警告: use of ‘auto’ in parameter declaration only available with ‘-std=c++20’ or ‘-fconcepts’
    9 | void print(auto a){
      |            ^~~~
main.cpp:13:13: 警告: use of ‘auto’ in parameter declaration only available with ‘-std=c++20’ or ‘-fconcepts’
   13 | void prints(auto a){
      |             ^~~~
main.cpp:21:13: 警告: use of ‘auto’ in parameter declaration only available with ‘-std=c++20’ or ‘-fconcepts’
   21 | void printl(auto a){
      |             ^~~~

ソースコード

diff #

//Normal

#define _GLIBCXX_DEBUG
#define ll long long
#include <bits/stdc++.h>
using namespace std;
using Graph = vector<vector<int>>;

void print(auto a){
  cout << a;
}

void prints(auto a){
  cout << a << " ";
}

void prints(){
  cout << " ";
}

void printl(auto a){
  cout << a << endl;
}

void printl(){
  cout << endl;
}

void fix(int n){
  cout << fixed << setprecision(n);
}

int main(){
  int N; cin >> N;

  ll ans = 0;
  for(int i = 0; i < N; i++){
    ll C, D; cin >> C >> D;

    ll E = (C+1)/2;

    ans += D*E;

    ans %= 1000000007;
  }

  printl(ans);

  return 0;
}
0