結果

問題 No.719 Coprime
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-29 09:42:20
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,847 ms / 3,000 ms
コード長 209 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-10-09 02:35:27
合計ジャッジ時間 24,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
12,544 KB
testcase_01 AC 110 ms
12,416 KB
testcase_02 AC 111 ms
12,672 KB
testcase_03 AC 114 ms
12,672 KB
testcase_04 AC 114 ms
12,544 KB
testcase_05 AC 118 ms
12,544 KB
testcase_06 AC 117 ms
12,672 KB
testcase_07 AC 119 ms
12,544 KB
testcase_08 AC 119 ms
12,672 KB
testcase_09 AC 122 ms
12,672 KB
testcase_10 AC 123 ms
12,544 KB
testcase_11 AC 125 ms
12,672 KB
testcase_12 AC 126 ms
12,544 KB
testcase_13 AC 127 ms
12,544 KB
testcase_14 AC 131 ms
12,672 KB
testcase_15 AC 133 ms
12,416 KB
testcase_16 AC 131 ms
12,672 KB
testcase_17 AC 134 ms
12,800 KB
testcase_18 AC 137 ms
12,672 KB
testcase_19 AC 138 ms
12,800 KB
testcase_20 AC 138 ms
12,672 KB
testcase_21 AC 141 ms
12,800 KB
testcase_22 AC 141 ms
12,800 KB
testcase_23 AC 143 ms
12,672 KB
testcase_24 AC 149 ms
12,672 KB
testcase_25 AC 145 ms
12,672 KB
testcase_26 AC 146 ms
12,416 KB
testcase_27 AC 152 ms
12,672 KB
testcase_28 AC 152 ms
12,544 KB
testcase_29 AC 152 ms
12,672 KB
testcase_30 AC 152 ms
12,800 KB
testcase_31 AC 159 ms
12,800 KB
testcase_32 AC 154 ms
12,672 KB
testcase_33 AC 157 ms
12,672 KB
testcase_34 AC 159 ms
12,544 KB
testcase_35 AC 162 ms
12,672 KB
testcase_36 AC 162 ms
12,416 KB
testcase_37 AC 167 ms
12,672 KB
testcase_38 AC 162 ms
12,800 KB
testcase_39 AC 165 ms
12,800 KB
testcase_40 AC 164 ms
12,672 KB
testcase_41 AC 191 ms
12,800 KB
testcase_42 AC 197 ms
12,800 KB
testcase_43 AC 243 ms
12,800 KB
testcase_44 AC 260 ms
12,672 KB
testcase_45 AC 267 ms
12,672 KB
testcase_46 AC 331 ms
12,672 KB
testcase_47 AC 334 ms
12,800 KB
testcase_48 AC 331 ms
12,672 KB
testcase_49 AC 365 ms
12,544 KB
testcase_50 AC 364 ms
12,800 KB
testcase_51 AC 371 ms
12,800 KB
testcase_52 AC 564 ms
12,800 KB
testcase_53 AC 798 ms
12,800 KB
testcase_54 AC 1,249 ms
13,056 KB
testcase_55 AC 1,251 ms
12,928 KB
testcase_56 AC 1,474 ms
12,928 KB
testcase_57 AC 1,543 ms
13,056 KB
testcase_58 AC 1,802 ms
13,056 KB
testcase_59 AC 1,844 ms
13,056 KB
testcase_60 AC 1,847 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'prime'
m=2048
l=(0..n=gets.to_i).map{{0=>0}}
(2..n).map{|i|r=s=0;t=1;Prime.each(i){|q|i%q<1&&(r=q;s|=t);t*=2};l[r][s%m]=i}
p l.inject([0]*m){|f,k|(0...m).map{|x|k.map{|s,i|s>(x&s)?0:f[x^s]+i}.max}}.max
0