結果
| 問題 | No.2801 Unique Maximum |
| コンテスト | |
| ユーザー |
👑 potato167
|
| 提出日時 | 2024-06-28 20:31:19 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 327 bytes |
| 記録 | |
| コンパイル時間 | 5,437 ms |
| コンパイル使用メモリ | 337,568 KB |
| 実行使用メモリ | 9,152 KB |
| 最終ジャッジ日時 | 2026-07-05 02:04:45 |
| 合計ジャッジ時間 | 6,394 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 21 |
ソースコード
#include "testlib.h"
#include <bits/stdc++.h>
using ll = long long;
const ll MIN_N = 1;
const ll MAX_N = 200'000;
const ll MIN_M = 1;
const ll MAX_M = 1'000'000'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