結果

問題 No.3029 素因数
ユーザー kmjpkmjp
提出日時 2017-03-31 23:42:28
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 240 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-07 06:23:09
合計ジャッジ時間 1,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 RE -
testcase_03 WA -
testcase_04 AC 11 ms
6,272 KB
testcase_05 AC 11 ms
6,272 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 RE -
testcase_09 WA -
testcase_10 RE -
testcase_11 AC 12 ms
6,272 KB
testcase_12 RE -
testcase_13 WA -
testcase_14 RE -
testcase_15 AC 11 ms
6,144 KB
testcase_16 RE -
testcase_17 AC 11 ms
6,272 KB
testcase_18 AC 11 ms
6,272 KB
testcase_19 WA -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 11 ms
6,016 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 WA -
testcase_27 RE -
testcase_28 AC 11 ms
6,400 KB
testcase_29 AC 11 ms
6,016 KB
testcase_30 WA -
testcase_31 AC 11 ms
6,272 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 11 ms
6,400 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 11 ms
6,016 KB
testcase_38 RE -
testcase_39 AC 11 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=1309020564363155364990198847863210152708042104341971929
M=input()
while M%2==0:
	M/=2

S=set([3,5,7,11,13,17,19,23,29,31,37])

#for s in S:
#	print s,M%s
	

if M in S:
	if A%M%2==0:
		print "even"
	else:
		print "odd"
else:
	assert 0



0