結果

問題 No.946 箱箱箱
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-12-09 03:28:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,370 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 46,372 KB
最終ジャッジ日時 2024-06-27 03:13:02
合計ジャッジ時間 55,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 1,309 ms
46,356 KB
testcase_04 AC 1,348 ms
46,312 KB
testcase_05 AC 85 ms
12,288 KB
testcase_06 AC 1,362 ms
45,844 KB
testcase_07 AC 1,255 ms
46,264 KB
testcase_08 AC 1,209 ms
46,372 KB
testcase_09 AC 1,171 ms
46,020 KB
testcase_10 AC 1,294 ms
46,140 KB
testcase_11 AC 86 ms
12,288 KB
testcase_12 AC 1,186 ms
45,888 KB
testcase_13 AC 1,205 ms
46,036 KB
testcase_14 AC 1,278 ms
46,148 KB
testcase_15 AC 1,284 ms
46,144 KB
testcase_16 AC 1,311 ms
46,296 KB
testcase_17 AC 1,292 ms
46,020 KB
testcase_18 AC 1,285 ms
46,296 KB
testcase_19 AC 1,174 ms
46,096 KB
testcase_20 AC 94 ms
12,288 KB
testcase_21 AC 1,267 ms
45,764 KB
testcase_22 AC 1,289 ms
46,100 KB
testcase_23 AC 1,295 ms
46,136 KB
testcase_24 AC 1,263 ms
45,912 KB
testcase_25 AC 1,182 ms
46,140 KB
testcase_26 AC 1,310 ms
46,044 KB
testcase_27 AC 1,274 ms
46,056 KB
testcase_28 AC 1,291 ms
46,012 KB
testcase_29 AC 1,212 ms
45,980 KB
testcase_30 AC 1,282 ms
46,056 KB
testcase_31 AC 1,296 ms
46,020 KB
testcase_32 AC 1,225 ms
44,872 KB
testcase_33 AC 1,287 ms
46,148 KB
testcase_34 AC 1,233 ms
46,184 KB
testcase_35 AC 1,283 ms
46,012 KB
testcase_36 AC 1,354 ms
46,168 KB
testcase_37 AC 1,345 ms
45,908 KB
testcase_38 AC 1,184 ms
46,012 KB
testcase_39 AC 1,265 ms
45,456 KB
testcase_40 AC 1,282 ms
46,100 KB
testcase_41 AC 1,316 ms
46,016 KB
testcase_42 AC 1,287 ms
46,140 KB
testcase_43 AC 1,347 ms
44,560 KB
testcase_44 AC 1,185 ms
46,140 KB
testcase_45 AC 1,352 ms
46,056 KB
testcase_46 AC 1,370 ms
46,176 KB
testcase_47 AC 87 ms
12,288 KB
testcase_48 AC 85 ms
12,288 KB
testcase_49 AC 86 ms
12,288 KB
testcase_50 AC 85 ms
12,032 KB
testcase_51 AC 85 ms
12,160 KB
testcase_52 AC 86 ms
12,288 KB
testcase_53 AC 86 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=$<.map &:to_i
n=a[0]
f={}
n.downto(0){|i|
  g={}
  s=0
  (i+1).upto(n){|j|
    s^=a[j]
    g[s^f[j]]=1
  }
  n.downto(0){|x|
    g[x]||f[i]=x
  }
}
print :Taka,f[0]>0?:h: :n,:ashi
0