結果
問題 | No.2186 冪乗の片側極限 |
ユーザー |
![]() |
提出日時 | 2023-01-13 22:06:20 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 182 bytes |
コンパイル時間 | 1,792 ms |
コンパイル使用メモリ | 191,868 KB |
最終ジャッジ日時 | 2025-02-10 02:35:47 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 55 WA * 1 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main() {int a,b;cin >> a >> b;long long ans = 1;for(int i = 0; i < b; i++) ans *= a;cout << ans << endl;}