結果

問題 No.5004 Room Assignment
ユーザー butsurizukibutsurizuki
提出日時 2021-11-28 08:05:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 2,786 ms
実行使用メモリ 22,416 KB
スコア 0
平均クエリ数 4824.66
最終ジャッジ日時 2021-11-30 23:52:44
合計ジャッジ時間 18,604 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
22,140 KB
testcase_01 AC 137 ms
21,968 KB
testcase_02 WA -
testcase_03 AC 137 ms
21,780 KB
testcase_04 AC 135 ms
22,368 KB
testcase_05 AC 136 ms
21,912 KB
testcase_06 AC 136 ms
21,924 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 135 ms
21,924 KB
testcase_10 AC 140 ms
21,804 KB
testcase_11 AC 137 ms
21,936 KB
testcase_12 WA -
testcase_13 AC 137 ms
21,936 KB
testcase_14 WA -
testcase_15 AC 136 ms
21,936 KB
testcase_16 AC 139 ms
21,960 KB
testcase_17 AC 140 ms
21,936 KB
testcase_18 AC 135 ms
22,092 KB
testcase_19 AC 136 ms
21,960 KB
testcase_20 WA -
testcase_21 AC 136 ms
21,780 KB
testcase_22 AC 136 ms
21,912 KB
testcase_23 WA -
testcase_24 AC 135 ms
21,908 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 139 ms
22,092 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 141 ms
21,624 KB
testcase_32 AC 139 ms
21,936 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 136 ms
22,092 KB
testcase_38 WA -
testcase_39 AC 137 ms
21,924 KB
testcase_40 WA -
testcase_41 AC 137 ms
21,924 KB
testcase_42 AC 136 ms
21,888 KB
testcase_43 AC 136 ms
21,912 KB
testcase_44 AC 137 ms
21,948 KB
testcase_45 AC 137 ms
21,780 KB
testcase_46 AC 138 ms
22,212 KB
testcase_47 AC 138 ms
21,936 KB
testcase_48 AC 134 ms
22,044 KB
testcase_49 WA -
testcase_50 AC 136 ms
21,936 KB
testcase_51 AC 137 ms
21,804 KB
testcase_52 AC 135 ms
21,948 KB
testcase_53 AC 137 ms
21,932 KB
testcase_54 AC 136 ms
21,768 KB
testcase_55 WA -
testcase_56 AC 137 ms
22,128 KB
testcase_57 AC 138 ms
21,912 KB
testcase_58 AC 138 ms
21,984 KB
testcase_59 AC 136 ms
21,948 KB
testcase_60 AC 136 ms
22,152 KB
testcase_61 AC 136 ms
21,972 KB
testcase_62 WA -
testcase_63 AC 137 ms
21,924 KB
testcase_64 AC 138 ms
22,052 KB
testcase_65 AC 139 ms
21,936 KB
testcase_66 AC 152 ms
22,380 KB
testcase_67 AC 140 ms
21,900 KB
testcase_68 AC 139 ms
22,104 KB
testcase_69 WA -
testcase_70 AC 138 ms
21,960 KB
testcase_71 WA -
testcase_72 WA -
testcase_73 AC 139 ms
21,912 KB
testcase_74 AC 139 ms
21,816 KB
testcase_75 WA -
testcase_76 AC 140 ms
21,984 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 140 ms
21,780 KB
testcase_81 AC 140 ms
21,984 KB
testcase_82 AC 138 ms
21,936 KB
testcase_83 AC 141 ms
21,972 KB
testcase_84 AC 137 ms
21,936 KB
testcase_85 AC 137 ms
21,792 KB
testcase_86 WA -
testcase_87 WA -
testcase_88 AC 137 ms
21,936 KB
testcase_89 AC 137 ms
21,924 KB
testcase_90 AC 140 ms
21,924 KB
testcase_91 WA -
testcase_92 WA -
testcase_93 AC 136 ms
21,900 KB
testcase_94 AC 136 ms
21,888 KB
testcase_95 AC 137 ms
21,924 KB
testcase_96 AC 137 ms
21,936 KB
testcase_97 AC 137 ms
22,152 KB
testcase_98 AC 136 ms
22,104 KB
testcase_99 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
  int T,R,c=0;
  scanf("%d%d",&T,&R);
  for(int i=0;i<T;i++){
    int n;
    scanf("%d",&n);
    for(int j=0;j<n;j++){
      int v;
      scanf("%d",&v);
      c++;
    }
    printf("1\n");
    fflush(stdout);
    printf("%d %d\n",c,c);
    fflush(stdout);
  }
}
0