結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー LV3zJigVW57oPGy
提出日時 2022-07-18 15:41:28
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 170 bytes
コンパイル時間 1,336 ms
コンパイル使用メモリ 157,660 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 15:35:31
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 10 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;


int main() {
int a, b;
cin >> a >> b;
a = pow(a, b);
int c = 10000000;
a = a % c;
cout << c << endl;
cout  << a <<endl;
}
0