結果

問題 No.403 2^2^2
ユーザー NoNo
提出日時 2018-01-31 16:28:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 168 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,844 KB
最終ジャッジ日時 2024-12-29 23:49:42
合計ジャッジ時間 32,860 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
15,744 KB
testcase_01 AC 31 ms
28,352 KB
testcase_02 AC 33 ms
15,872 KB
testcase_03 AC 31 ms
28,236 KB
testcase_04 AC 31 ms
15,872 KB
testcase_05 AC 32 ms
16,000 KB
testcase_06 AC 33 ms
16,256 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 31 ms
15,872 KB
testcase_09 AC 31 ms
27,916 KB
testcase_10 AC 31 ms
16,256 KB
testcase_11 AC 31 ms
15,872 KB
testcase_12 AC 33 ms
15,872 KB
testcase_13 AC 32 ms
16,000 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 533 ms
17,664 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 32 ms
10,496 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 31 ms
10,496 KB
testcase_23 AC 31 ms
10,496 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 33 ms
10,624 KB
testcase_28 TLE -
testcase_29 AC 30 ms
29,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ss = input().split("^")
a = int(ss[0])
b = int(ss[1])
c = int(ss[2])

a1 = pow(a,b * c,1000000007)
m = pow(b,c)
a2 = pow(a,m,1000000007)

print(str(a1) + " " + str(a2))
0