結果

問題 No.251 大きな桁の復習問題(1)
ユーザー TawaraTawara
提出日時 2015-08-01 14:02:29
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 76,708 KB
実行使用メモリ 79,008 KB
最終ジャッジ日時 2024-07-18 00:28:47
合計ジャッジ時間 24,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 68 ms
75,772 KB
testcase_03 AC 68 ms
75,948 KB
testcase_04 AC 67 ms
75,812 KB
testcase_05 AC 66 ms
75,896 KB
testcase_06 AC 67 ms
75,844 KB
testcase_07 AC 68 ms
76,048 KB
testcase_08 AC 67 ms
75,656 KB
testcase_09 AC 2,052 ms
78,648 KB
testcase_10 AC 2,009 ms
78,460 KB
testcase_11 AC 2,023 ms
78,224 KB
testcase_12 AC 2,114 ms
78,776 KB
testcase_13 AC 1,992 ms
78,488 KB
testcase_14 AC 2,011 ms
79,008 KB
testcase_15 AC 1,956 ms
78,440 KB
testcase_16 AC 2,090 ms
78,604 KB
testcase_17 AC 1,989 ms
78,860 KB
testcase_18 AC 2,168 ms
78,484 KB
testcase_19 AC 2,076 ms
78,352 KB
testcase_20 AC 73 ms
76,080 KB
testcase_21 AC 71 ms
76,052 KB
testcase_22 AC 71 ms
76,092 KB
testcase_23 AC 70 ms
75,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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