結果
問題 | No.820 Power of Two |
ユーザー | fusilbayonet |
提出日時 | 2019-05-27 11:34:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 252 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 37,760 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-09-17 15:28:53 |
合計ジャッジ時間 | 3,944 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | TLE | - |
ソースコード
#include <cstdio> #include <cmath> int main() { int N, K; scanf("%d%d", &N, &K); N = pow(2,N); K = pow(2,K); for(int i=1; ; i++) { K *= i; if(K >= N) { printf("%d", i); return 0; } } }