結果

問題 No.2260 Adic Sum
ユーザー kotenkoten
提出日時 2023-04-15 23:05:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 911 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,356 KB
最終ジャッジ日時 2024-10-11 07:20:51
合計ジャッジ時間 6,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 TLE * 1 -- * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

# This is a sample Python script.
import random
# Press Shift+F10 to execute it or replace it with your code.
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.


def input_wrapper():
#    return inputfile.readline().strip()
     return input()


def print_hi(name):
    line = input_wrapper().split(" ")
    N = int(line[0])
    P = int(line[1])

    line = input_wrapper().split(" ")
    A = []
    for elem in line:
        A.append(int(elem))

    ans = 0
    for i in range(N - 1):
        for j in range(i + 1, N):
            tester = abs(A[i] - A[j])
            while tester % P == 0:
                ans += 1
                tester = tester / P

    print(ans)

# Press the green button in the gutter to run the script.
if __name__ == '__main__':
    print_hi('PyCharm')
#    make_charlie()
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
0