結果

問題 No.237 作図可能性
ユーザー matrie
提出日時 2021-01-13 21:41:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,972 KB
最終ジャッジ日時 2024-11-22 17:51:56
合計ジャッジ時間 17,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import*
from itertools import*
n=int(input())+1
c=0
f=[1,1,1,1,1,3,5,17,257,65537]
for M in set(list(combinations(f,5))):
	m=prod(M)
	while m<n: c+=1; m*=2
print(c-2)
0