結果

問題 No.251 大きな桁の復習問題(1)
ユーザー TawaraTawara
提出日時 2015-08-01 14:05:27
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,436 ms / 5,000 ms
コード長 197 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 76,580 KB
実行使用メモリ 78,612 KB
最終ジャッジ日時 2024-12-17 17:26:05
合計ジャッジ時間 29,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,532 KB
testcase_01 AC 72 ms
75,544 KB
testcase_02 AC 73 ms
75,816 KB
testcase_03 AC 72 ms
75,772 KB
testcase_04 AC 74 ms
75,680 KB
testcase_05 AC 74 ms
75,960 KB
testcase_06 AC 74 ms
75,528 KB
testcase_07 AC 71 ms
75,948 KB
testcase_08 AC 71 ms
76,068 KB
testcase_09 AC 2,267 ms
78,368 KB
testcase_10 AC 2,326 ms
78,356 KB
testcase_11 AC 2,260 ms
78,612 KB
testcase_12 AC 2,261 ms
78,364 KB
testcase_13 AC 2,260 ms
78,232 KB
testcase_14 AC 2,336 ms
78,588 KB
testcase_15 AC 2,311 ms
78,232 KB
testcase_16 AC 2,279 ms
78,520 KB
testcase_17 AC 2,252 ms
78,240 KB
testcase_18 AC 2,267 ms
78,572 KB
testcase_19 AC 2,436 ms
78,240 KB
testcase_20 AC 73 ms
75,932 KB
testcase_21 AC 73 ms
75,684 KB
testcase_22 AC 73 ms
76,164 KB
testcase_23 AC 73 ms
75,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log
N = int(raw_input())
M = int(raw_input())
p = 129402307
N %= p
ans = 1
if M > 0:
	for i in xrange(int(log(M,2))+1):
		if (M>>i)&1:
			ans = ans * N % p
		N = N**2 % p
print ans
0