結果
問題 | No.3035 2018 |
ユーザー | WA_TLE |
提出日時 | 2018-04-02 00:33:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 982 ms / 2,000 ms |
コード長 | 1,956 bytes |
コンパイル時間 | 1,328 ms |
コンパイル使用メモリ | 129,548 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 06:23:08 |
合計ジャッジ時間 | 4,892 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 980 ms
6,944 KB |
testcase_04 | AC | 982 ms
6,944 KB |
testcase_05 | AC | 859 ms
6,944 KB |
testcase_06 | AC | 186 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
ソースコード
#include<deque> #include<queue> #include<vector> #include<algorithm> #include<iostream> #include<set> #include<cmath> #include<tuple> #include<string> #include<chrono> #include<functional> #include<iterator> #include<random> #include<unordered_set> #include<array> #include<map> #include<iomanip> using namespace std; typedef long long int llint; typedef long double lldo; #define mp make_pair #define mt make_tuple #define pub push_back #define puf push_front #define pob pop_back #define pof pop_front #define fir first #define sec second #define res resize #define ins insert #define era erase const llint mod=1000000007; const llint big=1e17+10; const long double pai=3.141592653589793238462643383279502884197; const long double eps=1e-9; template <class T,class U>void mineq(T& a,U b){if(a>b){a=b;}} template <class T,class U>void maxeq(T& a,U b){if(a<b){a=b;}} llint gcd(llint a,llint b){if(a%b==0){return b;}else return gcd(b,a%b);} llint lcm(llint a,llint b){return a/gcd(a,b)*b;} template<class T> void SO(T& ve){sort(ve.begin(),ve.end());} template<class T> void REV(T& ve){reverse(ve.begin(),ve.end());} int LBI(vector<int>&ar,int in){return lower_bound(ar.begin(),ar.end(),in)-ar.begin();} int UBI(vector<int>&ar,int in){return upper_bound(ar.begin(),ar.end(),in)-ar.begin();} int main(void){ int i,j,n;cin>>n; int cou=0; i=1;cou=0; if(100000<n){i=460012;cou=100000;} if(200000<n){i=951144;cou=200000;} if(300000<n){i=1453468;cou=300000;} if(400000<n){i=1963818;cou=400000;} if(500000<n){i=2478479;cou=500000;} if(600000<n){i=2998840;cou=600000;} if(700000<n){i=3522474;cou=700000;} if(800000<n){i=4049562;cou=800000;} if(900000<n){i=4578584;cou=900000;} bool aaaaa=true; for(;i<mod;i++){ int yaku=0; for(j=1;j*j<i;j++){ if(i%j==0){yaku+=2;} if(yaku>4){break;} } if(j*j==i){yaku++;} if(yaku==4){cou++;aaaaa=true;} //if(aaaaa&&cou%100000==0){aaaaa=false;cout<<i<<endl;} if(cou==n){cout<<i<<endl;return 0;} } }