結果
| 問題 | No.8047 Riddle of Cards |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-02 12:24:51 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 177 bytes |
| 記録 | |
| コンパイル時間 | 609 ms |
| コンパイル使用メモリ | 78,720 KB |
| 実行使用メモリ | 7,968 KB |
| 最終ジャッジ日時 | 2026-06-09 06:39:52 |
| 合計ジャッジ時間 | 1,644 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 6 WA * 1 |
ソースコード
#include <iostream>
int main()
{
int n,m;std::cin >> n>> m;
long long ans = 1;
for(int i = 0; i < n; i++)ans *= m;
std::cout << ans << std::endl;
return 0;
}