結果

問題 No.3035 2018
ユーザー weizenweizen
提出日時 2018-04-02 23:48:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 792 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 48,500 KB
最終ジャッジ日時 2024-06-26 06:52:55
合計ジャッジ時間 9,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 753 ms
48,472 KB
testcase_01 AC 760 ms
48,412 KB
testcase_02 AC 787 ms
48,280 KB
testcase_03 AC 792 ms
48,452 KB
testcase_04 AC 790 ms
48,456 KB
testcase_05 AC 787 ms
48,384 KB
testcase_06 AC 769 ms
48,500 KB
testcase_07 AC 774 ms
48,424 KB
testcase_08 AC 771 ms
48,500 KB
testcase_09 AC 751 ms
48,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:22:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   22 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#define N_MAX 6000000
long long dp[N_MAX];

int num_divisor(int n){
    /*
    int i=0,count=0,s=0;
    for(i=1;i<=n;i++){
        if(n%i==0){
            s=s+i;
            count++;
        }
    }
    return count;*/
    return dp[n];
}



int main(void){
    int N;
    scanf("%d",&N);
    for(long long i = 1; i <= N_MAX; i++){
        for(long long j = 1; j*i <= N_MAX; j++){
            dp[j*i] += 1;
        }
    }
;
    int count = 0;
    int n = 0;
    while(count != N){
       if(num_divisor(++n) == 4) ++count;
    }
    printf("%d\n",n);
    return 0;
}
0