結果
問題 | No.820 Power of Two |
ユーザー | kami_apk |
提出日時 | 2019-04-27 20:14:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 493 bytes |
コンパイル時間 | 700 ms |
コンパイル使用メモリ | 66,440 KB |
実行使用メモリ | 816,560 KB |
最終ジャッジ日時 | 2024-05-07 00:38:11 |
合計ジャッジ時間 | 4,680 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include<algorithm> #include<iostream> #include<stdio.h> #include<string> #include<vector> #include <cmath> using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(false); // input ll N,K; cin >> N >> K; ll Z = pow(2,N); ll X = pow(2,K); ll flag = 0; ll i = 1; vector<ll> in; while(flag <= Z){ in.push_back(i*X); i++; flag = i*flag; } cout << in.size() << endl; return 0; }