結果

問題 No.403 2^2^2
ユーザー ciel
提出日時 2016-07-22 23:14:30
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 84 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 09:21:55
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c=map(int,raw_input().split('^'))
print(pow(pow(a,b,M),c,M),pow(a,pow(b,c,M),M))
0