結果

問題 No.2193 メガの下1桁
ユーザー googol_S0googol_S0
提出日時 2023-01-13 21:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 1,196 ms
コンパイル使用メモリ 81,408 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-06-06 21:53:03
合計ジャッジ時間 4,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
73,216 KB
testcase_01 AC 79 ms
72,704 KB
testcase_02 AC 79 ms
73,344 KB
testcase_03 AC 79 ms
72,960 KB
testcase_04 AC 79 ms
73,344 KB
testcase_05 AC 78 ms
73,344 KB
testcase_06 AC 79 ms
72,832 KB
testcase_07 AC 79 ms
73,216 KB
testcase_08 AC 78 ms
73,088 KB
testcase_09 AC 78 ms
73,088 KB
testcase_10 AC 77 ms
72,960 KB
testcase_11 AC 78 ms
73,088 KB
testcase_12 AC 78 ms
72,832 KB
testcase_13 AC 78 ms
73,088 KB
testcase_14 AC 78 ms
73,088 KB
testcase_15 AC 77 ms
72,960 KB
testcase_16 AC 78 ms
72,960 KB
testcase_17 AC 77 ms
73,344 KB
testcase_18 AC 78 ms
72,704 KB
testcase_19 AC 78 ms
72,960 KB
testcase_20 AC 78 ms
73,344 KB
testcase_21 AC 78 ms
73,344 KB
testcase_22 AC 78 ms
72,960 KB
testcase_23 AC 77 ms
72,832 KB
testcase_24 AC 78 ms
73,088 KB
testcase_25 AC 78 ms
73,216 KB
testcase_26 AC 79 ms
73,088 KB
testcase_27 AC 77 ms
73,088 KB
testcase_28 AC 78 ms
73,216 KB
testcase_29 AC 78 ms
72,832 KB
testcase_30 AC 77 ms
72,960 KB
testcase_31 AC 78 ms
72,960 KB
testcase_32 AC 78 ms
72,960 KB
testcase_33 AC 78 ms
73,344 KB
testcase_34 AC 78 ms
72,960 KB
testcase_35 AC 78 ms
73,088 KB
testcase_36 AC 80 ms
73,344 KB
testcase_37 AC 80 ms
73,088 KB
testcase_38 AC 80 ms
73,344 KB
testcase_39 AC 81 ms
73,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=int(input())
D=int(input())
N=int(input())
B=int(input())
mod=27720
L=62
X=[[0]*mod for i in range(L+1)]
def f(x):
  return pow(x+D,x,mod)

for i in range(mod):
  X[0][i]=f(i)
for i in range(L):
  for j in range(mod):
    X[i+1][j]=X[i][X[i][j]]
ANS=M%mod
for i in range(L+1):
  if (N>>i)&1:
    ANS=X[i][ANS]
ANS%=B
if ANS==10:
  ANS='A'
print(ANS)
0