結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,403 ms
27,784 KB
testcase_01 AC 1,420 ms
27,912 KB
testcase_02 AC 1,433 ms
27,748 KB
testcase_03 AC 1,493 ms
27,932 KB
testcase_04 AC 1,421 ms
27,908 KB
testcase_05 AC 1,419 ms
27,800 KB
testcase_06 AC 1,413 ms
27,880 KB
testcase_07 AC 1,411 ms
27,828 KB
testcase_08 AC 1,431 ms
27,908 KB
testcase_09 AC 1,404 ms
27,892 KB
testcase_10 AC 1,419 ms
27,812 KB
testcase_11 AC 1,414 ms
27,780 KB
testcase_12 AC 1,426 ms
27,792 KB
testcase_13 AC 1,452 ms
27,780 KB
testcase_14 AC 1,431 ms
27,796 KB
testcase_15 AC 1,400 ms
27,904 KB
testcase_16 AC 1,425 ms
27,940 KB
testcase_17 AC 1,427 ms
27,928 KB
testcase_18 AC 1,417 ms
27,804 KB
testcase_19 AC 1,423 ms
27,752 KB
testcase_20 AC 1,410 ms
27,944 KB
testcase_21 AC 1,407 ms
27,880 KB
testcase_22 AC 1,406 ms
27,908 KB
testcase_23 AC 1,427 ms
27,776 KB
testcase_24 AC 1,425 ms
27,748 KB
testcase_25 AC 1,408 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<=>4e6
0