結果

問題 No.5016 Worst Mayor
ユーザー siman
提出日時 2023-04-30 07:36:49
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 1,121 ms
コンパイル使用メモリ 103,136 KB
実行使用メモリ 24,336 KB
スコア 1,050,000,000
平均クエリ数 400.00
最終ジャッジ日時 2023-04-30 07:36:58
合計ジャッジ時間 8,326 ms
ジャッジサーバーID
(参考情報)
judge16 / judge17
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int N, T;

class WorstMayor {
  public:
    void load_data() {
      cin >> N >> T;
    }

    void run() {
      load_data();

      for (int t = 0; t < T; ++t) {
        cout << 3 << endl;
      }
    }
};

int main() {
  WorstMayor wm;
  wm.run();

  return 0;
}
0