結果

問題 No.8029 素因数
ユーザー hrgn
提出日時 2019-03-06 02:26:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 250 ms
コード長 262 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-23 14:29:25
合計ジャッジ時間 2,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

n: int = 177635683940025046467781066894531
m = int(input())

if (n % m) % 2 == 0:
    print("even")
else:
    print("odd")

'''
mathematicaで因数分解して,
26180411287263107299803976957264203054160842086839438580
の最大の素因数nを求めた。
'''
0