結果
問題 | No.1809 Divide NCK |
ユーザー | U S |
提出日時 | 2022-01-14 22:07:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 783 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 61,312 KB |
最終ジャッジ日時 | 2024-11-20 10:42:33 |
合計ジャッジ時間 | 3,920 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
60,544 KB |
testcase_01 | AC | 62 ms
61,056 KB |
testcase_02 | AC | 57 ms
61,056 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 57 ms
60,544 KB |
testcase_08 | AC | 56 ms
60,928 KB |
testcase_09 | WA | - |
testcase_10 | AC | 58 ms
60,672 KB |
testcase_11 | AC | 58 ms
60,672 KB |
testcase_12 | AC | 57 ms
60,544 KB |
testcase_13 | AC | 58 ms
60,544 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 57 ms
61,056 KB |
testcase_17 | AC | 54 ms
60,672 KB |
testcase_18 | AC | 57 ms
60,416 KB |
testcase_19 | AC | 58 ms
61,312 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 58 ms
60,800 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 52 ms
60,544 KB |
testcase_26 | WA | - |
testcase_27 | AC | 59 ms
61,312 KB |
testcase_28 | WA | - |
testcase_29 | AC | 57 ms
60,800 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 58 ms
60,928 KB |
testcase_35 | WA | - |
testcase_36 | AC | 53 ms
60,544 KB |
testcase_37 | AC | 55 ms
61,312 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
ソースコード
# import sys # input = sys.stdin.readline def mp():return map(int,input().split()) def lmp():return list(map(int,input().split())) def mps(A):return [tuple(map(int, input().split())) for _ in range(A)] def stoi(LIST):return list(map(int,LIST)) def itos(LIST):return list(map(str,LIST)) def bitA(X,A):return X & 1<<A == 1<<A import math import bisect import heapq import time from copy import copy as cc from copy import deepcopy as dc from itertools import accumulate from collections import Counter, defaultdict, deque def ceil(U,V):return (U+V-1)//V def modf1(N,MOD):return (N-1)%MOD+1 inf = int(1e18+20) mod = int(1e9+7) def insu(x): ans = 0 now = m while now <= x: ans += x//now now *= m return ans n,k,m = mp() print(insu(n)-insu(n-k)-insu(k))