結果
問題 | No.237 作図可能性 |
ユーザー | evima |
提出日時 | 2015-05-23 19:42:33 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 379 bytes |
コンパイル時間 | 1,249 ms |
コンパイル使用メモリ | 164,828 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 06:22:36 |
合計ジャッジ時間 | 2,417 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 28 |
ソースコード
#include <bits/stdc++.h> using namespace std; const int M = 5; long F[M] = {3, 5, 17, 257, 65537}; int main(){ long N; cin >> N; set<long> S; for(int mask = 0; mask < 1<<M; mask++){ long x = 1; for(int i = 0; i < M; i++){ if(mask >> i & 1){ x *= F[i]; } } while(x <= N){ if(x >= 3){ S.insert(x); } x *= 2; } } cout << S.size() << endl; }