結果

問題 No.1747 Many Formulae 2
ユーザー Eki1009Eki1009
提出日時 2021-11-19 21:25:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-10 07:45:44
合計ジャッジ時間 3,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
12,544 KB
testcase_01 AC 98 ms
12,416 KB
testcase_02 AC 106 ms
12,800 KB
testcase_03 AC 98 ms
12,544 KB
testcase_04 AC 100 ms
12,544 KB
testcase_05 AC 99 ms
12,416 KB
testcase_06 AC 99 ms
12,288 KB
testcase_07 AC 102 ms
12,928 KB
testcase_08 AC 101 ms
12,416 KB
testcase_09 AC 99 ms
12,416 KB
testcase_10 AC 102 ms
12,416 KB
testcase_11 AC 100 ms
12,544 KB
testcase_12 AC 101 ms
12,544 KB
testcase_13 AC 98 ms
12,416 KB
testcase_14 AC 100 ms
12,416 KB
testcase_15 AC 111 ms
12,672 KB
testcase_16 AC 111 ms
12,800 KB
testcase_17 AC 107 ms
12,416 KB
testcase_18 AC 100 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - t
Syntax OK

ソースコード

diff #

require'prime'
s=gets.chop.chars
n=s.size-1
p (0...1<<n).count{|i|t=eval((0..n).map{|j|s[j]+(i>>j&1>0??+:'')}.join).prime?}
0