結果
| 問題 | 
                            No.312 置換処理
                             | 
                    
| コンテスト | |
| ユーザー | 
                             yamaken1343
                         | 
                    
| 提出日時 | 2015-12-09 22:29:12 | 
| 言語 | C90  (gcc 12.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 290 bytes | 
| コンパイル時間 | 119 ms | 
| コンパイル使用メモリ | 23,424 KB | 
| 実行使用メモリ | 6,940 KB | 
| 最終ジャッジ日時 | 2024-09-15 06:00:34 | 
| 合計ジャッジ時間 | 1,447 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 44 WA * 1 | 
コンパイルメッセージ
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);
      |         ^~~~~~~~~~~~~~~~
            
            ソースコード
#include<stdio.h>
#include<math.h>
int main(void){
	long long int a,i,c,d,b;
	scanf("%lld",&a);
	for(i=1;i<=sqrt(a);i++){
		if(a%i == 0){
			if(c<3)c=i;
			d=a/i;
		}
	}
	b = c>d? d:c;
	
	if(b==1)printf("%lld\n",a);
	else if(b==2)printf("%lld\n",a/2);
	else printf("%lld\n",b);
	return 0;
}
            
            
            
        
            
yamaken1343