結果

問題 No.1121 Social Distancing in Cinema
ユーザー trineutrontrineutron
提出日時 2020-07-23 00:38:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,000 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-06-23 03:13:21
合計ジャッジ時間 18,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 25 ms
11,008 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 52 ms
11,520 KB
testcase_16 AC 136 ms
13,568 KB
testcase_17 AC 440 ms
22,272 KB
testcase_18 AC 794 ms
35,072 KB
testcase_19 AC 1,000 ms
40,192 KB
testcase_20 AC 51 ms
11,392 KB
testcase_21 AC 45 ms
11,264 KB
testcase_22 AC 46 ms
11,392 KB
testcase_23 AC 36 ms
11,008 KB
testcase_24 AC 29 ms
11,008 KB
testcase_25 AC 260 ms
18,560 KB
testcase_26 AC 337 ms
20,864 KB
testcase_27 AC 36 ms
11,136 KB
testcase_28 AC 853 ms
36,480 KB
testcase_29 AC 331 ms
20,224 KB
testcase_30 AC 249 ms
16,256 KB
testcase_31 AC 956 ms
40,320 KB
testcase_32 AC 704 ms
32,896 KB
testcase_33 AC 310 ms
19,840 KB
testcase_34 AC 310 ms
19,968 KB
testcase_35 AC 775 ms
33,536 KB
testcase_36 AC 911 ms
39,168 KB
testcase_37 AC 233 ms
17,536 KB
testcase_38 AC 360 ms
21,120 KB
testcase_39 AC 790 ms
36,096 KB
testcase_40 AC 182 ms
16,000 KB
testcase_41 AC 68 ms
12,160 KB
testcase_42 AC 881 ms
38,784 KB
testcase_43 AC 898 ms
38,784 KB
testcase_44 AC 893 ms
38,912 KB
testcase_45 AC 910 ms
38,784 KB
testcase_46 AC 851 ms
37,888 KB
testcase_47 AC 26 ms
10,752 KB
testcase_48 AC 26 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
n = int(input())
x = [0] * n
y = [0] * n
for i in range(n):
    x[i], y[i] = map(int, input().split())
t = [[0] * 10 for i in range(9)]
p = []
for i in range(n):
    offset = 0
    if y[i] % 18 >= 9:
        offset = 5
    t[y[i] % 9][(x[i] + offset) % 10] += 1
    p.append((y[i] % 9, (x[i] + offset) % 10))
for i, j in itertools.product(range(9), range(10)):
    if t[i][j] * 90 >= n:
        r = (i, j)
        break
s = []
for i in range(n):
    if p[i] == r:
        s.append(i + 1)
print(len(s))
print(*s)
0