結果

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

ソースコード

diff #

# https://academic-accelerator.com/encyclopedia/jp/list-of-prime-numbers
# を見れば載っているが……。

x=177635683940025046467781066894531

M=int(input())
k=x%M

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