結果

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

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

int main(){
  for(int i=0;i<3600;i++){
    cout << "0\n";
    fflush(stdout);
  }
  return 0;
}
0