結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | simamumu |
提出日時 | 2019-10-25 22:27:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 609 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 71,148 KB |
最終ジャッジ日時 | 2024-11-07 03:33:33 |
合計ジャッジ時間 | 1,908 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 72 ms
69,668 KB |
testcase_04 | AC | 70 ms
70,168 KB |
testcase_05 | AC | 71 ms
70,460 KB |
testcase_06 | AC | 73 ms
70,140 KB |
testcase_07 | AC | 70 ms
71,128 KB |
testcase_08 | WA | - |
testcase_09 | AC | 72 ms
70,072 KB |
testcase_10 | AC | 72 ms
69,772 KB |
testcase_11 | AC | 74 ms
69,592 KB |
testcase_12 | WA | - |
ソースコード
from collections import defaultdict,deque import sys,heapq,bisect,math,itertools,string,queue,copy,time sys.setrecursionlimit(10**8) INF = float('inf') mod = 10**9+7 eps = 10**-7 def inp(): return int(sys.stdin.readline()) def inpl(): return list(map(int, sys.stdin.readline().split())) def inpl_str(): return list(sys.stdin.readline().split()) Q = inp() for q in range(Q): A,B,C = inpl() if C == 1: print(A*B) else: ans = 0 while A > 1: if A%C == 0: A //= C else: A -= A%C ans += B print(ans)