結果

問題 No.403 2^2^2
ユーザー hiro1729hiro1729
提出日時 2024-09-09 18:59:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 115 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 53,484 KB
最終ジャッジ日時 2024-09-09 19:00:01
合計ジャッジ時間 2,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,084 KB
testcase_01 AC 39 ms
52,556 KB
testcase_02 AC 39 ms
52,452 KB
testcase_03 AC 38 ms
53,300 KB
testcase_04 AC 38 ms
52,320 KB
testcase_05 AC 39 ms
52,488 KB
testcase_06 AC 38 ms
51,740 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
52,404 KB
testcase_09 AC 39 ms
52,232 KB
testcase_10 AC 38 ms
52,064 KB
testcase_11 AC 37 ms
52,576 KB
testcase_12 AC 38 ms
52,612 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 38 ms
51,924 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 38 ms
52,324 KB
testcase_18 AC 38 ms
52,620 KB
testcase_19 AC 37 ms
52,352 KB
testcase_20 AC 37 ms
52,860 KB
testcase_21 AC 37 ms
52,820 KB
testcase_22 AC 37 ms
52,820 KB
testcase_23 AC 38 ms
52,396 KB
testcase_24 AC 38 ms
52,880 KB
testcase_25 WA -
testcase_26 AC 38 ms
52,428 KB
testcase_27 AC 38 ms
52,856 KB
testcase_28 AC 38 ms
53,084 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
A, B, C = map(int, input().split('^'))
print(pow(A, B * C, mod), pow(A, pow(B, C, mod - 1), mod))
0