結果
| 問題 | No.2637 Factorize? |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2024-03-21 00:10:52 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 246µs | |
| コード長 | 332 bytes |
| 記録 | |
| コンパイル時間 | 1,918 ms |
| コンパイル使用メモリ | 325,832 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-06 15:58:06 |
| 合計ジャッジ時間 | 4,494 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 32 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "settings/debug.cpp"
#define _GLIBCXX_DEBUG
#else
#define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
int main() {
ll p;
cin >> p;
printf("1 %lld\n", p);
return 0;
}
a01sa01to