結果

問題 No.414 衝動
ユーザー bal4ubal4u
提出日時 2019-04-15 05:37:39
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 6 ms / 1,000 ms
コード長 335 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-15 09:21:56
合計ジャッジ時間 889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 6 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// yukicoder: No.414 衝動
// 2019.4.15 bal4u

#include <stdio.h>
#include <math.h>

int main()
{
	int i, k, b;
	long long M;

	scanf("%lld", &M);
	if ((M & 1) == 0) k = 2;
	else {
		b = (int)sqrt((double)M);
		k = 1; for (i = 3; i <= b; i += 2) {
			if (M % i == 0) { k = i; break; }
		}
	}
	printf("%d %lld\n", k, M/k);
	return 0;
}
0