結果

問題 No.715 集合と二人ゲーム
ユーザー maimai
提出日時 2018-07-13 23:11:14
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-10-09 05:34:24
合計ジャッジ時間 12,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 102 ms
12,928 KB
testcase_06 WA -
testcase_07 AC 106 ms
13,312 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 114 ms
14,464 KB
testcase_12 AC 118 ms
14,464 KB
testcase_13 AC 120 ms
14,592 KB
testcase_14 WA -
testcase_15 AC 121 ms
15,744 KB
testcase_16 WA -
testcase_17 AC 121 ms
15,744 KB
testcase_18 WA -
testcase_19 AC 126 ms
16,128 KB
testcase_20 WA -
testcase_21 AC 140 ms
17,024 KB
testcase_22 WA -
testcase_23 AC 141 ms
17,152 KB
testcase_24 AC 148 ms
17,664 KB
testcase_25 WA -
testcase_26 AC 146 ms
17,664 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 149 ms
18,944 KB
testcase_30 WA -
testcase_31 AC 142 ms
17,152 KB
testcase_32 AC 139 ms
16,640 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 93 ms
12,032 KB
testcase_36 AC 93 ms
12,032 KB
testcase_37 AC 95 ms
12,032 KB
testcase_38 AC 95 ms
11,904 KB
testcase_39 WA -
testcase_40 AC 93 ms
12,288 KB
testcase_41 AC 91 ms
12,160 KB
testcase_42 WA -
testcase_43 AC 93 ms
11,904 KB
testcase_44 WA -
testcase_45 AC 93 ms
12,032 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 91 ms
12,032 KB
testcase_50 WA -
testcase_51 AC 435 ms
54,656 KB
testcase_52 WA -
testcase_53 AC 436 ms
54,272 KB
testcase_54 WA -
testcase_55 AC 433 ms
54,400 KB
testcase_56 WA -
testcase_57 AC 400 ms
50,048 KB
testcase_58 WA -
testcase_59 AC 437 ms
54,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def ascan; gets.split.map(&:to_i); end
gets
aa = ascan.sort

lis = [1]
aa.each_cons(2) do |a,b|
    if (b-a).abs <= 1
        lis[-1] += 1
    else
        lis << 1
    end
end

hoge = lis.map{|e| x=e%20;x>8 ? (x-8)%6 : x%4 }.reduce(:^)
# p lis.map{|e| e%4}
puts hoge == 0 ? :Second : :First








#true => first
@memo = {}
def guchoku(set)
    return false if set.empty?
    return @memo[set] if @memo[set]
    set.each do |e|
        new_set = set.select{|x| (x-e).abs > 1}
        return @memo[set] = true if guchoku(new_set) == false
    end
    return @memo[set] = false
end

# 13.upto(13) do |i|
#     p [i+1, guchoku((1..(1+i)).to_a)]
# end
# 
# p guchoku(aa)

# 1 2 3 4 5 6 7 8 9
# t t t f t t t f t

# 0, 4, 8, 14, 20, 24, 28
# 4 6 6
0