結果

問題 No.414 衝動
ユーザー yoshikiriyoshikiri
提出日時 2016-09-15 22:07:06
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 324 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 20,736 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-17 06:14:50
合計ジャッジ時間 7,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<stdio.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<p/2;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