結果
問題 |
No.820 Power of Two
|
ユーザー |
![]() |
提出日時 | 2020-09-07 01:10:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 191 bytes |
コンパイル時間 | 1,622 ms |
コンパイル使用メモリ | 165,008 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-29 07:57:31 |
合計ジャッジ時間 | 2,266 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 8 WA * 2 |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; using P = pair<int,int>; int main(void){ ll n, k; cin >> n >> k; cout << pow(2, n - k) << endl; return 0; }