結果

問題 No.12 限定された素数
ユーザー syarosyaro
提出日時 2016-01-18 12:41:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,418 ms / 5,000 ms
コード長 153 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 27,944 KB
最終ジャッジ日時 2024-05-03 09:39:41
合計ジャッジ時間 36,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,289 ms
27,832 KB
testcase_01 AC 1,307 ms
27,780 KB
testcase_02 AC 1,387 ms
27,780 KB
testcase_03 AC 1,349 ms
27,752 KB
testcase_04 AC 1,292 ms
27,876 KB
testcase_05 AC 1,291 ms
27,944 KB
testcase_06 AC 1,301 ms
27,796 KB
testcase_07 AC 1,308 ms
27,924 KB
testcase_08 AC 1,418 ms
27,908 KB
testcase_09 AC 1,309 ms
27,836 KB
testcase_10 AC 1,286 ms
27,912 KB
testcase_11 AC 1,294 ms
27,752 KB
testcase_12 AC 1,295 ms
27,812 KB
testcase_13 AC 1,272 ms
27,748 KB
testcase_14 AC 1,282 ms
27,840 KB
testcase_15 AC 1,294 ms
27,908 KB
testcase_16 AC 1,318 ms
27,920 KB
testcase_17 AC 1,312 ms
27,796 KB
testcase_18 AC 1,367 ms
27,944 KB
testcase_19 AC 1,320 ms
27,932 KB
testcase_20 AC 1,286 ms
27,796 KB
testcase_21 AC 1,292 ms
27,748 KB
testcase_22 AC 1,286 ms
27,920 KB
testcase_23 AC 1,296 ms
27,752 KB
testcase_24 AC 1,308 ms
27,944 KB
testcase_25 AC 1,303 ms
27,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!ruby -rprime
a=u=r=m=0
gets
gets.bytes{|c|a+=1<<c-48}
Prime.each(5e6){|q|u<a||r=[r,q+~m].max;q.to_s.bytes{|c|u|=1<<c-48};u|a>a&&m=q+u=0}
p r.+r<=>5e6-3
0