結果

問題 No.774 tatyamと素数大富豪
ユーザー Shuz*Shuz*
提出日時 2018-06-22 07:58:52
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 880 bytes
コンパイル時間 1,237 ms
コンパイル使用メモリ 145,540 KB
実行使用メモリ 11,484 KB
最終ジャッジ日時 2023-09-13 07:51:39
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,376 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

bool IsPrime(long num){
    if (num < 2) return false;
    else if (num == 2) return true;
    else if (num % 2 == 0) return false;

    double sqrtNum = sqrt(num);
    for (int i = 3; i <= sqrtNum; i += 2){
        if (num % i == 0){
            return false;}}
    return true;}

int main(){
    long n,i,p=1,ans,j,k,l;
    cin>>n;
    int a[n];
    int t[3*n];
    t[1]=1;
    for(i=2;i-3*n;++i)t[i]=t[i-1]*10;
    for(i=0;i-n;++i)cin>>a[i],p*=2;
    long s[512]={},m=0;
    for(i=0;i-p;++i){
         k=i;
         ans=a[0];
         l=a[0]>9?2:1;
         for(j=1;j-n;++j){
             l+=a[j]>9?2:1;
             if(k%2)ans+=a[j]*t[l];
             else{ans*=a[j]>9?100:10;ans+=a[j];}
             k/=2;}
         if(IsPrime(ans))s[m++]=ans;}
    int max=0;
    for(i=0;i-512;++i)max=max>s[i]?max:s[i];
    cout<<max<<"\n";
}

0