結果
問題 | No.16 累乗の加算 |
ユーザー | kn451t |
提出日時 | 2021-11-20 17:48:19 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 38 ms / 5,000 ms |
コード長 | 1,856 bytes |
コンパイル時間 | 546 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 54,164 KB |
最終ジャッジ日時 | 2024-06-11 20:03:36 |
合計ジャッジ時間 | 1,176 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,460 KB |
testcase_01 | AC | 37 ms
52,208 KB |
testcase_02 | AC | 34 ms
53,500 KB |
testcase_03 | AC | 33 ms
53,256 KB |
testcase_04 | AC | 34 ms
54,164 KB |
testcase_05 | AC | 35 ms
52,648 KB |
testcase_06 | AC | 34 ms
53,764 KB |
testcase_07 | AC | 35 ms
52,876 KB |
testcase_08 | AC | 38 ms
52,704 KB |
testcase_09 | AC | 35 ms
53,596 KB |
testcase_10 | AC | 34 ms
53,844 KB |
testcase_11 | AC | 33 ms
53,376 KB |
testcase_12 | AC | 32 ms
53,180 KB |
testcase_13 | AC | 34 ms
52,204 KB |
ソースコード
MOD = 1000003 # 適宜変更 class ModInt: def __init__(self, x): self.x = x % MOD def __str__(self): return str(self.x) __repr__ = __str__ def __add__(self, other): return ( ModInt(self.x + other.x) if isinstance(other, ModInt) else ModInt(self.x + other) ) def __sub__(self, other): return ( ModInt(self.x - other.x) if isinstance(other, ModInt) else ModInt(self.x - other) ) def __mul__(self, other): return ( ModInt(self.x * other.x) if isinstance(other, ModInt) else ModInt(self.x * other) ) def __truediv__(self, other): return ( ModInt( self.x * pow(other.x, MOD - 2, MOD) ) if isinstance(other, ModInt) else ModInt(self.x * pow(other, MOD - 2, MOD)) ) def __pow__(self, other): return ( ModInt(pow(self.x, other.x, MOD)) if isinstance(other, ModInt) else ModInt(pow(self.x, other, MOD)) ) __radd__ = __add__ def __rsub__(self, other): return ( ModInt(other.x - self.x) if isinstance(other, ModInt) else ModInt(other - self.x) ) __rmul__ = __mul__ def __rtruediv__(self, other): return ( ModInt( other.x * pow(self.x, MOD - 2, MOD) ) if isinstance(other, ModInt) else ModInt(other * pow(self.x, MOD - 2, MOD)) ) def __rpow__(self, other): return ( ModInt(pow(other.x, self.x, MOD)) if isinstance(other, ModInt) else ModInt(pow(other, self.x, MOD)) ) x,n=map(int,input().split()) a=[int(i) for i in input().split()] result=ModInt(0) for i in range(n): result+=ModInt(x)**a[i] print(result)