結果

問題 No.312 置換処理
ユーザー Ysmr_Ry
提出日時 2016-03-03 18:06:30
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 364 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 33,632 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 13:49:28
合計ジャッジ時間 1,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 36 WA * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         scanf( "%lld", &N );
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

// yukicoder 312 (http://yukicoder.me/problems/847)
#include<cstdio>
#include<algorithm>
#define rep(i,a) for(int i=0;i<(a);++i)

typedef long long ll;

ll N;

int main()
{
	scanf( "%lld", &N );

	ll ans = N/2;
	for( ll i = 3; i*i <= N; ++i )
	{
		if( N % i == 0 )
		{ ans = std::min( ans, std::min( i, N/i ) ); break; }
	}

	printf( "%lld\n", ans );

	return 0;
}
0