結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー HankHank
提出日時 2016-05-29 22:38:37
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 621 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 24,960 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-10-07 17:46:57
合計ジャッジ時間 3,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 0 ms
6,816 KB
testcase_02 AC 0 ms
6,820 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,816 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
6,816 KB
testcase_15 WA -
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 0 ms
6,816 KB
testcase_18 AC 1 ms
6,820 KB
testcase_19 AC 0 ms
6,816 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:21:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |   scanf("%ld %ld",&a,&b);
      |   ^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

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

long func(long a){
  if(a%2 == 0) return 2;
  else{
    long i ;
    for(i=3;i<= sqrt(a);i+=2){
      if(a%i==0) return i;
    }
  }
  return a;
}

int main(){
  long a,b,i,j,buff;
  long result , result_prime;
  long prime;
  
  scanf("%ld %ld",&a,&b);
  result_prime = func(a);

  for(i= result_prime; i<=sqrt(b);i+=2){
    prime = func(i);
    if(prime>=result_prime){
      ((a/i)>i)?(j=(a/i)):(j=i);
      for(j=buff;j<=b/i;j++){
	if((i*j>=a)&&(i*j<=b)){
	  result_prime = prime;
	  result = i*j;
	}
      }
    }
  }
  printf("%ld\n",result);
  return 0;
}
0