結果

問題 No.1121 Social Distancing in Cinema
ユーザー yuruhiyayuruhiya
提出日時 2020-07-23 09:44:49
言語 Crystal
(1.11.2)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 11,756 ms
コンパイル使用メモリ 298,728 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-06-30 20:43:54
合計ジャッジ時間 15,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 5 ms
6,944 KB
testcase_16 AC 12 ms
6,944 KB
testcase_17 AC 37 ms
6,940 KB
testcase_18 AC 68 ms
8,320 KB
testcase_19 AC 78 ms
9,216 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 5 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,944 KB
testcase_25 AC 25 ms
6,940 KB
testcase_26 AC 31 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 67 ms
8,576 KB
testcase_29 AC 29 ms
6,944 KB
testcase_30 AC 22 ms
6,940 KB
testcase_31 AC 78 ms
9,344 KB
testcase_32 AC 59 ms
7,808 KB
testcase_33 AC 27 ms
6,944 KB
testcase_34 AC 27 ms
6,944 KB
testcase_35 AC 63 ms
8,448 KB
testcase_36 AC 75 ms
8,832 KB
testcase_37 AC 21 ms
6,944 KB
testcase_38 AC 31 ms
6,940 KB
testcase_39 AC 67 ms
8,448 KB
testcase_40 AC 17 ms
6,944 KB
testcase_41 AC 7 ms
6,940 KB
testcase_42 AC 74 ms
9,216 KB
testcase_43 AC 74 ms
9,216 KB
testcase_44 AC 74 ms
9,216 KB
testcase_45 AC 74 ms
9,216 KB
testcase_46 AC 71 ms
8,960 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
xy = Array.new(n) { x, y = read_line.split.map &.to_i; {x, y} }
ans = xy.each_with_index.group_by { |(x, y), i|
  {x % 5, y % 9}
}.values.max_by(&.size).map { |(x, y), i|
  Tuple.new({x//5, y//9}, i)
}.group_by { |(x, y), i|
  (x + y) % 2
}.values.max_by(&.size).map { |xy, i| i + 1 }
puts ans.size, ans.join(' ')
0