結果

問題 No.1121 Social Distancing in Cinema
ユーザー yuruhiyayuruhiya
提出日時 2020-07-23 10:35:55
言語 Crystal
(1.11.2)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 12,396 ms
コンパイル使用メモリ 296,932 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-06-30 20:44:45
合計ジャッジ時間 15,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 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,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 12 ms
6,940 KB
testcase_17 AC 37 ms
6,944 KB
testcase_18 AC 62 ms
7,552 KB
testcase_19 AC 74 ms
9,216 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 23 ms
6,944 KB
testcase_26 AC 30 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 70 ms
8,576 KB
testcase_29 AC 28 ms
6,940 KB
testcase_30 AC 21 ms
6,944 KB
testcase_31 AC 73 ms
9,088 KB
testcase_32 AC 57 ms
7,552 KB
testcase_33 AC 27 ms
6,940 KB
testcase_34 AC 26 ms
6,940 KB
testcase_35 AC 60 ms
7,296 KB
testcase_36 AC 74 ms
8,704 KB
testcase_37 AC 20 ms
6,944 KB
testcase_38 AC 30 ms
6,944 KB
testcase_39 AC 66 ms
8,320 KB
testcase_40 AC 17 ms
6,940 KB
testcase_41 AC 7 ms
6,944 KB
testcase_42 AC 73 ms
8,832 KB
testcase_43 AC 72 ms
8,960 KB
testcase_44 AC 73 ms
8,832 KB
testcase_45 AC 73 ms
8,960 KB
testcase_46 AC 71 ms
8,576 KB
testcase_47 AC 1 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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