結果
| 問題 | No.3443 Sum of (Tree Distances)^K 1 |
| コンテスト | |
| ユーザー |
👑 potato167
|
| 提出日時 | 2026-02-01 02:15:12 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 350 bytes |
| 記録 | |
| コンパイル時間 | 10,072 ms |
| コンパイル使用メモリ | 359,664 KB |
| 実行使用メモリ | 7,976 KB |
| 最終ジャッジ日時 | 2026-02-06 20:54:43 |
| 合計ジャッジ時間 | 12,294 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 47 |
ソースコード
#include<bits/stdc++.h>
#include "testlib.h"
using namespace std;
using ll = long long;
const ll MIN_N = 2;
const ll MAX_N = 200'000;
const ll MIN_M = 1;
const ll MAX_M = 200'000;
int main(){
registerValidation();
ll N = inf.readLong(MIN_N, MAX_N);
inf.readSpace();
ll M = inf.readLong(MIN_M, MAX_M);
inf.readEoln();
inf.readEof();
}
potato167