結果

問題 No.251 大きな桁の復習問題(1)
ユーザー satama123satama123
提出日時 2023-08-28 16:24:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 187 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 73,088 KB
最終ジャッジ日時 2024-06-09 11:36:18
合計ジャッジ時間 2,059 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 43 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 36 ms
51,712 KB
testcase_06 WA -
testcase_07 AC 36 ms
51,456 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 46 ms
60,416 KB
testcase_10 AC 51 ms
72,576 KB
testcase_11 AC 49 ms
72,704 KB
testcase_12 AC 48 ms
72,832 KB
testcase_13 AC 52 ms
72,508 KB
testcase_14 AC 50 ms
73,088 KB
testcase_15 AC 47 ms
72,704 KB
testcase_16 AC 49 ms
72,832 KB
testcase_17 AC 51 ms
72,320 KB
testcase_18 AC 56 ms
72,832 KB
testcase_19 AC 53 ms
72,448 KB
testcase_20 AC 37 ms
52,224 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 36 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
M = input()
mod = 129402307

n = 0
for i in N:
    n *= 10
    n += int(i)
    n %= mod

m = 0
for i in M:
    m *= 10
    m += int(i)
    m %= (mod-1)


print(pow(n, m, mod))
0