結果

問題 No.5016 Worst Mayor
ユーザー butsurizukibutsurizuki
提出日時 2023-04-23 17:38:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 244,352 KB
実行使用メモリ 24,408 KB
スコア 1,050,000,000
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 12:30:31
合計ジャッジ時間 10,183 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
24,336 KB
testcase_01 AC 80 ms
24,048 KB
testcase_02 AC 80 ms
23,688 KB
testcase_03 AC 80 ms
24,048 KB
testcase_04 AC 82 ms
24,408 KB
testcase_05 AC 82 ms
24,324 KB
testcase_06 AC 82 ms
23,544 KB
testcase_07 AC 80 ms
24,348 KB
testcase_08 AC 81 ms
23,412 KB
testcase_09 AC 81 ms
23,664 KB
testcase_10 AC 81 ms
24,372 KB
testcase_11 AC 80 ms
23,628 KB
testcase_12 AC 81 ms
24,360 KB
testcase_13 AC 80 ms
24,348 KB
testcase_14 AC 81 ms
23,400 KB
testcase_15 AC 80 ms
23,820 KB
testcase_16 AC 81 ms
24,324 KB
testcase_17 AC 82 ms
23,640 KB
testcase_18 AC 81 ms
24,348 KB
testcase_19 AC 79 ms
23,388 KB
testcase_20 AC 80 ms
23,676 KB
testcase_21 AC 80 ms
23,628 KB
testcase_22 AC 80 ms
23,388 KB
testcase_23 AC 81 ms
24,312 KB
testcase_24 AC 81 ms
23,388 KB
testcase_25 AC 81 ms
23,628 KB
testcase_26 AC 79 ms
24,048 KB
testcase_27 AC 81 ms
23,412 KB
testcase_28 AC 82 ms
23,376 KB
testcase_29 AC 80 ms
24,336 KB
testcase_30 AC 80 ms
23,532 KB
testcase_31 AC 80 ms
24,036 KB
testcase_32 AC 82 ms
24,240 KB
testcase_33 AC 80 ms
23,400 KB
testcase_34 AC 81 ms
23,400 KB
testcase_35 AC 82 ms
23,832 KB
testcase_36 AC 81 ms
23,400 KB
testcase_37 AC 81 ms
23,544 KB
testcase_38 AC 81 ms
23,544 KB
testcase_39 AC 81 ms
23,832 KB
testcase_40 AC 82 ms
23,388 KB
testcase_41 AC 82 ms
23,388 KB
testcase_42 AC 77 ms
23,820 KB
testcase_43 AC 82 ms
24,036 KB
testcase_44 AC 81 ms
23,628 KB
testcase_45 AC 78 ms
23,640 KB
testcase_46 AC 80 ms
23,832 KB
testcase_47 AC 82 ms
23,580 KB
testcase_48 AC 80 ms
23,676 KB
testcase_49 AC 80 ms
23,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main(){
  int n,t;
  cin >> n >> t;
  vector<int> a(n),b(n),c(n),d(n);
  for(int i=0;i<n;i++){
    cin >> a[i] >> b[i] >> c[i] >> d[i];
    a[i]--;b[i]--;c[i]--;d[i]--;
  }
  
  for(int tr=0;tr<t;tr++){
    long long u,v;
    cin >> u >> v;
    cout << "3\n";
    fflush(stdout);
  }
  return 0;
}
0