結果

問題 No.312 置換処理
コンテスト
ユーザー cologne
提出日時 2025-11-18 15:32:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 59,412 KB
最終ジャッジ日時 2025-11-18 15:32:26
合計ジャッジ時間 3,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 45
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys


def input(): return sys.stdin.readline().rstrip('\n')


def main():
    n = int(input())
    i = 3
    while i*i <= n:
        if n % i == 0:
            print(i)
            return
        i += 1
    if n % 2 == 0 and n > 4:
        print(n//2)
    else:
        print(n)


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