結果

問題 No.2903 A Round-the-World Trip with the Tent
ユーザー cleanttedcleantted
提出日時 2023-10-30 21:24:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,796 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,736 KB
実行使用メモリ 90,732 KB
最終ジャッジ日時 2024-09-27 19:30:30
合計ジャッジ時間 9,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

# import bisect
import copy
import heapq
import itertools
import math
import operator
import random
import sys
from bisect import bisect, bisect_left, bisect_right, insort
from collections import Counter, deque
from fractions import Fraction
from functools import cmp_to_key, lru_cache, partial
from inspect import currentframe
from math import ceil, gcd, log10, pi, sqrt
from typing import Iterable, Iterator, List, Tuple, TypeVar, Union

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
# import string
# import networkx as nx
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
# mod = 10 ** 9 + 7
mod = 998244353
# mod = 1 << 128
# mod = 10 ** 30 + 1
INF = 1 << 61
DIFF = 10 ** -9
DX = [1, 0, -1, 0, 1, 1, -1, -1]
DY = [0, 1, 0, -1, 1, -1, 1, -1]

def read_values(): return tuple(map(int, input().split()))
def read_index(): return tuple(map(lambda x: int(x) - 1, input().split()))
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]
def dprint(*values): print(*values, file=sys.stderr)
def dprint2(*values):
    names = {id(v): k for k, v in currentframe().f_back.f_locals.items()}
    dprint(", ".join(f"{names.get(id(value), '???')}={repr(value)}" for value in values))


def main():
    K, N = read_values()
    if K == 1:
    	print(54)
    	return

    P = []
    for n in range(1, int(N**0.5) + 1):
        if N % n == 0:
            P.append(n)
            if n * n != N:
                P.append(N // n)
    P.sort()

    T = {}
    for p in P:
        r = pow(2, p, mod) + 1
        for q in P:
            if q == p:
                break
            if p % q:
                continue
            r -= T[q]
            r %= mod
        T[p] = r % mod

    print(T[N])


if __name__ == "__main__":
    main()
0