結果
問題 | No.5004 Room Assignment |
ユーザー | trineutron |
提出日時 | 2021-12-01 00:04:34 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 148 ms / 5,000 ms |
コード長 | 298 bytes |
コンパイル時間 | 1,906 ms |
実行使用メモリ | 22,392 KB |
スコア | 0 |
平均クエリ数 | 3600.00 |
最終ジャッジ日時 | 2021-12-01 00:04:58 |
合計ジャッジ時間 | 20,966 ms |
ジャッジサーバーID (参考情報) |
judge15 / judge11 |
純コード判定しない問題か言語 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 100 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int t, r; cin >> t >> r; for (int i = 0; i < t; i++) { int n; cin >> n; for (int j = 0; j < n; j++) { int s; cin >> s; } cout << 0 << endl; } return 0; }