結果

問題 No.1017 Reiwa Sequence
ユーザー yuruhiyayuruhiya
提出日時 2021-04-02 21:05:28
言語 Crystal
(1.11.2)
結果
AC  
実行時間 891 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 13,809 ms
コンパイル使用メモリ 295,168 KB
実行使用メモリ 71,588 KB
最終ジャッジ日時 2024-06-06 05:44:55
合計ジャッジ時間 55,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 80 ms
19,328 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 827 ms
40,448 KB
testcase_13 AC 789 ms
39,936 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 81 ms
21,248 KB
testcase_20 AC 84 ms
21,376 KB
testcase_21 AC 81 ms
21,120 KB
testcase_22 AC 81 ms
21,248 KB
testcase_23 AC 79 ms
21,248 KB
testcase_24 AC 79 ms
21,248 KB
testcase_25 AC 79 ms
21,248 KB
testcase_26 AC 81 ms
21,248 KB
testcase_27 AC 83 ms
21,248 KB
testcase_28 AC 79 ms
21,376 KB
testcase_29 AC 79 ms
21,248 KB
testcase_30 AC 80 ms
21,120 KB
testcase_31 AC 83 ms
20,992 KB
testcase_32 AC 81 ms
20,736 KB
testcase_33 AC 81 ms
19,712 KB
testcase_34 AC 85 ms
19,712 KB
testcase_35 AC 79 ms
19,840 KB
testcase_36 AC 75 ms
19,712 KB
testcase_37 AC 82 ms
20,608 KB
testcase_38 AC 83 ms
20,480 KB
testcase_39 AC 81 ms
20,480 KB
testcase_40 AC 891 ms
71,588 KB
testcase_41 AC 859 ms
63,488 KB
testcase_42 AC 883 ms
71,556 KB
testcase_43 AC 876 ms
58,000 KB
testcase_44 AC 415 ms
9,216 KB
testcase_45 AC 809 ms
63,104 KB
testcase_46 AC 827 ms
63,360 KB
testcase_47 AC 738 ms
42,752 KB
testcase_48 AC 763 ms
39,172 KB
testcase_49 AC 425 ms
12,416 KB
testcase_50 AC 416 ms
12,160 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 86 ms
21,248 KB
testcase_53 AC 82 ms
21,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = read_line.to_i
a = read_line.split.map(&.to_i)
n = {22, m}.min
hash = {} of Int32 => Int32
b1, b2 = nil, nil
(0...1 << n).each { |b|
  sum = (0...n).sum { |i| a[i] * b.bit(i) }
  if hash.has_key?(sum)
    b1, b2 = hash[sum], b
  end
  hash[sum] = b
}
if b1 && b2
  puts "Yes", (0...m).map { |i| a[i] * (b1.bit(i) <=> b2.bit(i)) }.join(' ')
else
  puts "No"
end
0