結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
22,140 KB
testcase_01 AC 132 ms
21,600 KB
testcase_02 WA -
testcase_03 AC 133 ms
21,984 KB
testcase_04 AC 133 ms
22,152 KB
testcase_05 AC 131 ms
21,924 KB
testcase_06 AC 131 ms
21,768 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 132 ms
21,948 KB
testcase_10 AC 132 ms
22,116 KB
testcase_11 AC 132 ms
22,392 KB
testcase_12 WA -
testcase_13 AC 134 ms
21,780 KB
testcase_14 WA -
testcase_15 AC 132 ms
21,924 KB
testcase_16 AC 132 ms
22,032 KB
testcase_17 AC 136 ms
21,900 KB
testcase_18 AC 132 ms
21,792 KB
testcase_19 AC 132 ms
21,924 KB
testcase_20 WA -
testcase_21 AC 133 ms
21,984 KB
testcase_22 AC 134 ms
21,936 KB
testcase_23 WA -
testcase_24 AC 131 ms
21,888 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 134 ms
21,948 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 133 ms
21,908 KB
testcase_32 AC 134 ms
22,008 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 134 ms
21,948 KB
testcase_38 WA -
testcase_39 AC 131 ms
21,924 KB
testcase_40 WA -
testcase_41 AC 134 ms
21,792 KB
testcase_42 AC 133 ms
21,960 KB
testcase_43 AC 131 ms
22,140 KB
testcase_44 AC 133 ms
21,840 KB
testcase_45 AC 134 ms
21,948 KB
testcase_46 AC 133 ms
21,936 KB
testcase_47 AC 132 ms
21,924 KB
testcase_48 AC 132 ms
22,092 KB
testcase_49 WA -
testcase_50 AC 131 ms
21,948 KB
testcase_51 AC 132 ms
21,960 KB
testcase_52 AC 134 ms
22,140 KB
testcase_53 AC 130 ms
21,912 KB
testcase_54 AC 135 ms
21,912 KB
testcase_55 WA -
testcase_56 AC 131 ms
21,768 KB
testcase_57 AC 133 ms
22,152 KB
testcase_58 AC 135 ms
21,780 KB
testcase_59 AC 133 ms
21,792 KB
testcase_60 AC 133 ms
21,912 KB
testcase_61 AC 130 ms
21,888 KB
testcase_62 WA -
testcase_63 AC 132 ms
22,152 KB
testcase_64 AC 132 ms
21,780 KB
testcase_65 AC 132 ms
21,924 KB
testcase_66 AC 130 ms
22,032 KB
testcase_67 AC 130 ms
22,128 KB
testcase_68 AC 132 ms
21,972 KB
testcase_69 WA -
testcase_70 AC 134 ms
22,032 KB
testcase_71 WA -
testcase_72 WA -
testcase_73 AC 131 ms
21,936 KB
testcase_74 AC 131 ms
21,780 KB
testcase_75 WA -
testcase_76 AC 130 ms
22,140 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 AC 134 ms
21,936 KB
testcase_81 AC 134 ms
21,968 KB
testcase_82 AC 133 ms
21,924 KB
testcase_83 AC 134 ms
21,900 KB
testcase_84 AC 130 ms
21,960 KB
testcase_85 AC 133 ms
21,936 KB
testcase_86 WA -
testcase_87 WA -
testcase_88 AC 132 ms
21,972 KB
testcase_89 AC 132 ms
22,020 KB
testcase_90 AC 131 ms
21,792 KB
testcase_91 WA -
testcase_92 WA -
testcase_93 AC 131 ms
21,828 KB
testcase_94 AC 133 ms
21,936 KB
testcase_95 AC 136 ms
22,152 KB
testcase_96 AC 134 ms
21,960 KB
testcase_97 AC 133 ms
21,768 KB
testcase_98 AC 133 ms
22,032 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 i=0;i<n;i++){
      int v;
      scanf("%d",&v);
      c++;
    }
    printf("1\n%d %d\n",c,c);
    fflush(stdout);
  }
}
0