結果

問題 No.12 限定された素数
ユーザー syarosyaro
提出日時 2016-01-18 12:36:50
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 27,940 KB
最終ジャッジ日時 2024-09-19 20:26:09
合計ジャッジ時間 40,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,449 ms
27,800 KB
testcase_02 WA -
testcase_03 AC 1,435 ms
27,752 KB
testcase_04 WA -
testcase_05 AC 1,440 ms
27,796 KB
testcase_06 AC 1,441 ms
27,648 KB
testcase_07 AC 1,440 ms
27,748 KB
testcase_08 WA -
testcase_09 AC 1,444 ms
27,880 KB
testcase_10 WA -
testcase_11 AC 1,441 ms
27,780 KB
testcase_12 AC 1,438 ms
27,692 KB
testcase_13 AC 1,450 ms
27,804 KB
testcase_14 WA -
testcase_15 AC 1,444 ms
27,804 KB
testcase_16 AC 1,450 ms
27,876 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!ruby -rprime
a=u=r=m=0
gets
gets.bytes{|c|a+=1<<c-48}
Prime.each(5e6){|q|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