結果
| 問題 | No.2637 Factorize? | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2024-02-19 21:21:07 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 482 bytes | 
| コンパイル時間 | 3,595 ms | 
| コンパイル使用メモリ | 229,040 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-09-29 01:17:33 | 
| 合計ジャッジ時間 | 4,740 ms | 
| ジャッジサーバーID (参考情報) | judge1 / 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;
}
            
            
            
        