結果
| 問題 | No.1769 Don't Stop the Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-10-21 13:57:21 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 507 bytes |
| 記録 | |
| コンパイル時間 | 6,888 ms |
| コンパイル使用メモリ | 337,468 KB |
| 実行使用メモリ | 39,388 KB |
| 最終ジャッジ日時 | 2026-06-23 10:06:28 |
| 合計ジャッジ時間 | 9,705 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 28 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/dsu>
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i=0;i<n;++i)
#include "testlib.h"
int main() {
registerValidation();
int n = inf.readInt(2,200000);
inf.readEoln();
dsu uf(n);
rep(i,n-1) {
int a = inf.readInt(1,n-1);
inf.readSpace();
int b = inf.readInt(a+1,n);
inf.readSpace();
int c = inf.readInt(0,(1<<30)-1);
inf.readEoln();
}
inf.readEof();
return 0;
}