結果

問題 No.2637 Factorize?
ユーザー LovingDream1
提出日時 2024-02-21 02:56:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 190,980 KB
最終ジャッジ日時 2025-02-19 18:32:02
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define SPEEDUP                  \
    ios::sync_with_stdio(false); \
    cin.tie(nullptr);            \
    cout.tie(nullptr);
using namespace std;
using ll=long long;
const ll N=200005;
ll array1[200005]={0};
void solve()
{
	ll n;
	cin>>n;
	cout<<1<<" "<<n<<'\n';
}

int main()
{	
	SPEEDUP
	int t;
	t=1;
	while(t--)
	{
		solve();
	}
}
0