結果
| 問題 |
No.2186 冪乗の片側極限
|
| コンテスト | |
| ユーザー |
nono00
|
| 提出日時 | 2023-01-13 21:53:17 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 199 bytes |
| コンパイル時間 | 1,592 ms |
| コンパイル使用メモリ | 192,548 KB |
| 最終ジャッジ日時 | 2025-02-10 02:29:15 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 55 WA * 1 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
long long a, b, ans = 1;
cin >> a >> b;
for (int i = 0; i < b; i++) {
ans *= a;
}
cout << ans << '\n';
}
nono00