結果

問題 No.414 衝動
ユーザー yoshikiriyoshikiri
提出日時 2016-09-15 22:14:22
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 7 ms / 1,000 ms
コード長 346 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 23,552 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 03:11:43
合計ジャッジ時間 913 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:9:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%lld",&p);
      |         ^~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>/*掛け算の衝動*/
#include<math.h>

int main(){

	int i,flag=0;
	long long p;

	scanf("%lld",&p);

	if(p%2 == 0){
		printf("2 %lld\n",p/2);
		flag++;
	}
	else{
		for(i=3;i<=sqrt(p);i=i+2){
			if(p%i == 0){
				printf("%d %lld\n",i,p/i);
				flag++;
				break;
			}
		}
	}

	if(flag == 0) printf("1 %lld\n",p);

	return 0;
}
0