結果

問題 No.312 置換処理
ユーザー yamaken1343
提出日時 2015-12-09 22:04:26
言語 C90
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 23,168 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-15 05:59:54
合計ジャッジ時間 1,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18 WA * 27
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%lld",&a);
      |         ^~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<math.h>
int main(void){
	long long int a,i,c=0;
	scanf("%lld",&a);
	for(i=1;i<=sqrt(a);i++){
		if(a%i == 0) c=a/i;
	}
	if(c==1||c==2)printf("%lld\n",a);
	else printf("%lld\n",c);
	return 0;
}
0