結果

問題 No.136 Yet Another GCD Problem
ユーザー magurogumamaguroguma
提出日時 2017-09-24 00:04:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-14 05:44:31
合計ジャッジ時間 2,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 24 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

N,K = map(int, input().split())

i = 2
max_div = 1
while i*i<=N:
    if N%i==0:
        max_div = N // i
    i += 1

print(max_div)
0