結果

問題 No.2637 Factorize?
ユーザー nono00nono00
提出日時 2024-02-19 21:55:56
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 3,020 ms
コンパイル使用メモリ 244,484 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 01:55:30
合計ジャッジ時間 4,368 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

void solve() {
    long long a;
    std::cin >> a;
    std::cout << a << ' ' << 1 << std::endl;
}

int main() {
    std::cin.tie(0)->sync_with_stdio(0);
    std::cout << std::fixed << std::setprecision(16);
    int t = 1;

    while (t--) solve();
}
0