結果

問題 No.1121 Social Distancing in Cinema
ユーザー tomeruntomerun
提出日時 2020-07-22 22:02:49
言語 Crystal
(1.11.2)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 11,197 ms
コンパイル使用メモリ 296,868 KB
実行使用メモリ 28,572 KB
最終ジャッジ日時 2024-06-30 20:42:50
合計ジャッジ時間 16,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 46 ms
12,928 KB
testcase_18 AC 92 ms
23,692 KB
testcase_19 AC 108 ms
27,332 KB
testcase_20 AC 4 ms
6,944 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 28 ms
8,960 KB
testcase_26 AC 36 ms
10,624 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 98 ms
25,552 KB
testcase_29 AC 33 ms
9,984 KB
testcase_30 AC 26 ms
8,960 KB
testcase_31 AC 114 ms
28,572 KB
testcase_32 AC 86 ms
22,836 KB
testcase_33 AC 34 ms
9,984 KB
testcase_34 AC 34 ms
9,984 KB
testcase_35 AC 90 ms
22,716 KB
testcase_36 AC 106 ms
27,228 KB
testcase_37 AC 25 ms
7,808 KB
testcase_38 AC 39 ms
10,880 KB
testcase_39 AC 94 ms
24,968 KB
testcase_40 AC 20 ms
7,040 KB
testcase_41 AC 7 ms
6,940 KB
testcase_42 AC 104 ms
27,556 KB
testcase_43 AC 107 ms
25,900 KB
testcase_44 AC 106 ms
27,416 KB
testcase_45 AC 106 ms
25,972 KB
testcase_46 AC 103 ms
26,432 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
ps = Array.new(n) { read_line.split.map(&.to_i) }
cs = Array.new(90) { [] of Int32 }
ps.each.with_index do |p, i|
  x, y = p
  yi = y % 9
  x += y // 9 % 2 * 5
  xi = x % 10
  idx = yi * 10 + xi
  cs[idx] << i + 1
end
cs.each do |c|
  if c.size * 90 >= n
    puts c.size
    puts c.join(" ")
    break
  end
end
0