結果
問題 | No.2699 Simple Math (Returned) |
ユーザー | a |
提出日時 | 2024-03-29 21:55:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 431 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 82,460 KB |
実行使用メモリ | 77,696 KB |
最終ジャッジ日時 | 2024-09-30 15:54:02 |
合計ジャッジ時間 | 8,730 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
51,840 KB |
testcase_01 | AC | 449 ms
76,504 KB |
testcase_02 | AC | 694 ms
77,096 KB |
testcase_03 | AC | 511 ms
76,416 KB |
testcase_04 | WA | - |
testcase_05 | AC | 663 ms
77,696 KB |
testcase_06 | AC | 586 ms
76,556 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
def fast_exponentiation(a, b, n): result = 1 a %= n while b > 0: # 指数を二進数で表現し、各桁ごとに処理 if b % 2 == 1: result = (result * a) % n a = (a * a) % n b //= 2 return result for _ in range(int(input())): n,m=map(int,input().split()) if n%(2*m)==0: print(0) else: print(((fast_exponentiation(10,n%(2*m),998244353))-1)%998244353)