結果

問題 No.136 Yet Another GCD Problem
ユーザー Mao-betaMao-beta
提出日時 2024-03-15 16:00:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 787 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 62,820 KB
最終ジャッジ日時 2024-09-30 00:02:10
合計ジャッジ時間 3,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,504 KB
testcase_01 AC 44 ms
56,640 KB
testcase_02 AC 40 ms
57,484 KB
testcase_03 AC 45 ms
61,708 KB
testcase_04 AC 44 ms
62,324 KB
testcase_05 AC 43 ms
61,704 KB
testcase_06 AC 46 ms
62,768 KB
testcase_07 AC 44 ms
62,580 KB
testcase_08 AC 44 ms
61,440 KB
testcase_09 AC 45 ms
62,612 KB
testcase_10 AC 42 ms
61,800 KB
testcase_11 AC 45 ms
61,456 KB
testcase_12 AC 40 ms
56,476 KB
testcase_13 AC 44 ms
62,820 KB
testcase_14 AC 44 ms
60,848 KB
testcase_15 AC 45 ms
61,120 KB
testcase_16 AC 47 ms
60,984 KB
testcase_17 AC 44 ms
61,868 KB
testcase_18 AC 41 ms
56,628 KB
testcase_19 AC 43 ms
61,648 KB
testcase_20 AC 42 ms
60,720 KB
testcase_21 AC 40 ms
60,796 KB
testcase_22 AC 42 ms
57,100 KB
testcase_23 AC 41 ms
55,912 KB
testcase_24 AC 41 ms
56,732 KB
testcase_25 AC 42 ms
56,120 KB
testcase_26 AC 42 ms
56,788 KB
testcase_27 AC 43 ms
61,468 KB
testcase_28 AC 44 ms
61,824 KB
testcase_29 AC 46 ms
62,116 KB
testcase_30 AC 41 ms
56,100 KB
testcase_31 AC 40 ms
56,132 KB
testcase_32 AC 41 ms
56,564 KB
testcase_33 AC 42 ms
56,728 KB
testcase_34 AC 43 ms
62,280 KB
testcase_35 AC 45 ms
62,144 KB
testcase_36 AC 45 ms
62,764 KB
testcase_37 AC 44 ms
61,652 KB
testcase_38 AC 40 ms
55,852 KB
testcase_39 AC 42 ms
56,752 KB
testcase_40 AC 40 ms
57,136 KB
testcase_41 AC 41 ms
56,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N, K = NMI()
    ans = 1
    for g in range(2, N):
        if N % g == 0:
            k = N // g
            if 2 <= k:
                ans = max(ans, g)
    print(ans)


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