結果

問題 No.2186 冪乗の片側極限
ユーザー Ekiben542Ekiben542
提出日時 2023-07-05 19:03:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 100 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 86,672 KB
実行使用メモリ 71,532 KB
最終ジャッジ日時 2023-09-26 19:25:41
合計ジャッジ時間 7,505 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
70,984 KB
testcase_01 AC 90 ms
71,220 KB
testcase_02 AC 74 ms
71,336 KB
testcase_03 AC 73 ms
71,376 KB
testcase_04 AC 72 ms
71,324 KB
testcase_05 AC 72 ms
70,908 KB
testcase_06 AC 73 ms
71,372 KB
testcase_07 AC 73 ms
71,024 KB
testcase_08 AC 72 ms
71,128 KB
testcase_09 AC 73 ms
71,140 KB
testcase_10 AC 72 ms
70,940 KB
testcase_11 AC 74 ms
71,532 KB
testcase_12 AC 74 ms
71,328 KB
testcase_13 AC 74 ms
71,140 KB
testcase_14 AC 72 ms
71,320 KB
testcase_15 AC 71 ms
71,340 KB
testcase_16 AC 73 ms
71,364 KB
testcase_17 AC 73 ms
71,136 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 72 ms
71,328 KB
testcase_21 AC 71 ms
71,336 KB
testcase_22 AC 73 ms
71,284 KB
testcase_23 AC 73 ms
71,280 KB
testcase_24 AC 74 ms
71,412 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 73 ms
71,200 KB
testcase_30 AC 74 ms
71,292 KB
testcase_31 AC 73 ms
71,324 KB
testcase_32 AC 73 ms
71,168 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 73 ms
71,336 KB
testcase_39 AC 74 ms
71,416 KB
testcase_40 AC 73 ms
71,032 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 72 ms
71,036 KB
testcase_48 AC 73 ms
71,168 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())  # 
B = int(input())  #


x = B + 0.000001  
result = A ** x

print(int(result))  
0