結果

問題 No.5004 Room Assignment
ユーザー butsurizuki
提出日時 2021-11-29 17:21:18
言語 C++23
(gcc 13.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 40 WA * 60
権限があれば一括ダウンロードができます

ソースコード

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