結果
| 問題 | No.5004 Room Assignment |
| コンテスト | |
| ユーザー |
Nachia
|
| 提出日時 | 2021-12-07 00:34:48 |
| 言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 5,000 ms |
| コード長 | 452 bytes |
| コンパイル時間 | 692 ms |
| 実行使用メモリ | 22,368 KB |
| スコア | 0 |
| 平均クエリ数 | 3600.00 |
| 最終ジャッジ日時 | 2021-12-07 00:34:58 |
| 合計ジャッジ時間 | 9,103 ms |
|
ジャッジサーバーID (参考情報) |
judge13 / judge15 |
| 純コード判定しない問題か言語 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 100 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using u32 = uint32_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)
int main() {
rep(t,3600) cout << "0\n";
cout << flush;
string dummy;
rep(t,3600) getline(cin, dummy);
return 0;
}
struct ios_do_not_sync{
ios_do_not_sync(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
}
} ios_do_not_sync_instance;
Nachia