結果

問題 No.462 6日知らずのコンピュータ
ユーザー cielciel
提出日時 2016-12-13 01:49:32
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 197 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-05-07 08:59:17
合計ジャッジ時間 11,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
12,288 KB
testcase_01 AC 96 ms
12,160 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 95 ms
12,288 KB
testcase_07 AC 95 ms
12,160 KB
testcase_08 AC 97 ms
12,288 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 96 ms
12,160 KB
testcase_12 AC 96 ms
12,288 KB
testcase_13 RE -
testcase_14 AC 95 ms
12,288 KB
testcase_15 AC 95 ms
12,160 KB
testcase_16 AC 101 ms
12,416 KB
testcase_17 AC 96 ms
12,160 KB
testcase_18 RE -
testcase_19 AC 97 ms
12,032 KB
testcase_20 AC 96 ms
12,416 KB
testcase_21 AC 97 ms
12,160 KB
testcase_22 AC 95 ms
12,288 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 97 ms
12,032 KB
testcase_27 AC 96 ms
12,160 KB
testcase_28 RE -
testcase_29 AC 97 ms
12,160 KB
testcase_30 AC 95 ms
12,288 KB
testcase_31 RE -
testcase_32 AC 96 ms
12,160 KB
testcase_33 RE -
testcase_34 AC 94 ms
12,288 KB
testcase_35 AC 93 ms
12,160 KB
testcase_36 RE -
testcase_37 AC 94 ms
12,288 KB
testcase_38 RE -
testcase_39 AC 96 ms
12,032 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 94 ms
12,160 KB
testcase_43 AC 96 ms
12,160 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 AC 95 ms
12,288 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 95 ms
12,416 KB
testcase_50 AC 95 ms
12,160 KB
testcase_51 AC 95 ms
12,160 KB
testcase_52 AC 95 ms
12,288 KB
testcase_53 AC 94 ms
12,160 KB
testcase_54 AC 96 ms
12,160 KB
testcase_55 AC 95 ms
12,160 KB
testcase_56 AC 96 ms
12,288 KB
testcase_57 AC 94 ms
12,288 KB
testcase_58 AC 94 ms
12,032 KB
testcase_59 AC 94 ms
12,160 KB
testcase_60 AC 94 ms
12,288 KB
testcase_61 AC 96 ms
12,288 KB
testcase_62 AC 95 ms
12,288 KB
testcase_63 AC 94 ms
12,160 KB
testcase_64 AC 94 ms
12,160 KB
testcase_65 AC 95 ms
12,160 KB
testcase_66 AC 93 ms
12,288 KB
testcase_67 AC 95 ms
12,288 KB
testcase_68 AC 94 ms
12,288 KB
testcase_69 AC 95 ms
12,288 KB
testcase_70 AC 96 ms
12,288 KB
testcase_71 AC 97 ms
12,288 KB
testcase_72 AC 96 ms
12,160 KB
testcase_73 AC 93 ms
12,288 KB
testcase_74 AC 96 ms
12,160 KB
testcase_75 AC 94 ms
12,288 KB
testcase_76 AC 94 ms
12,032 KB
testcase_77 AC 94 ms
12,160 KB
testcase_78 AC 96 ms
12,160 KB
testcase_79 AC 98 ms
12,288 KB
testcase_80 AC 97 ms
12,160 KB
testcase_81 AC 98 ms
12,288 KB
testcase_82 AC 94 ms
12,288 KB
testcase_83 AC 99 ms
12,160 KB
testcase_84 AC 96 ms
12,288 KB
testcase_85 AC 95 ms
12,160 KB
testcase_86 AC 94 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

P=->n{n==0?0:P[n/2]+n%2}
N,K,*a=`dd`.split.map(&:to_i)
a=[0]+a.sort_by(&P)+[(1<<N)-1]
p a.each_cons(2).all?{|x,y|x&y==x} ?  a.each_cons(2).reduce(1){|s,(x,y)|s*(1..P[x^y]).reduce(:*)}%(10**9+7) : 0
0