結果
問題 |
No.2637 Factorize?
|
ユーザー |
|
提出日時 | 2024-02-19 21:20:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 482 bytes |
コンパイル時間 | 3,789 ms |
コンパイル使用メモリ | 230,260 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-29 01:16:41 |
合計ジャッジ時間 | 4,659 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 32 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using P = pair<ll, ll>; using T = tuple<ll, ll, ll>; #include <atcoder/all> using namespace atcoder; // using mint = modint998244353; // using mint = modint1000000007; #define rep(i, n) for(ll i = 0; i < n; i++) #define reps(i, l, r) for(ll i = l; i < r; i++) int main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); ll p; cin >> p; cout << 1 << " " << p << endl; return 0; }