結果
| 問題 | No.2795 Perfect Number |
| コンテスト | |
| ユーザー |
👑 potato167
|
| 提出日時 | 2024-06-25 18:13:21 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 280 bytes |
| 記録 | |
| コンパイル時間 | 5,406 ms |
| コンパイル使用メモリ | 337,704 KB |
| 実行使用メモリ | 9,284 KB |
| 最終ジャッジ日時 | 2026-07-05 01:55:06 |
| 合計ジャッジ時間 | 6,576 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 24 RE * 11 |
ソースコード
#include <bits/stdc++.h>
#include "testlib.h"
using namespace std;
using ll = long long;
const ll MIN_N = 1;
const ll MAX_N = 1'000'000'000'000'000'000;
int main(){
registerValidation();
ll N = inf.readLong(MIN_N, MAX_N);
ensure(N % 2 == 0);
inf.readEoln();
inf.readEof();
}
potato167