結果

問題 No.1121 Social Distancing in Cinema
ユーザー maspymaspy
提出日時 2020-07-22 22:55:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 73,688 KB
最終ジャッジ日時 2024-06-23 00:00:13
合計ジャッジ時間 30,910 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 436 ms
44,596 KB
testcase_05 AC 437 ms
44,460 KB
testcase_06 AC 439 ms
44,472 KB
testcase_07 AC 438 ms
44,692 KB
testcase_08 AC 443 ms
44,332 KB
testcase_09 AC 437 ms
44,344 KB
testcase_10 WA -
testcase_11 AC 444 ms
44,464 KB
testcase_12 AC 447 ms
44,604 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 498 ms
54,576 KB
testcase_18 AC 536 ms
68,872 KB
testcase_19 AC 561 ms
73,292 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 474 ms
48,820 KB
testcase_31 AC 561 ms
73,688 KB
testcase_32 AC 525 ms
65,152 KB
testcase_33 AC 486 ms
51,080 KB
testcase_34 AC 474 ms
50,736 KB
testcase_35 AC 587 ms
67,204 KB
testcase_36 AC 555 ms
71,696 KB
testcase_37 AC 474 ms
48,824 KB
testcase_38 AC 495 ms
52,404 KB
testcase_39 AC 566 ms
68,656 KB
testcase_40 AC 538 ms
46,000 KB
testcase_41 AC 464 ms
44,464 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 447 ms
44,336 KB
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N = int(readline())
XY = np.array(read().split(), np.int64)

X, Y = XY[::2], XY[1::2]

key1 = X % 9
key2 = Y % 5
key3 = ((X // 9) + (Y // 5)) & 1

key = key1 * 10 + key2 * 2 + key3
most_freq = np.bincount(key).argmax()
ans = np.where(key == most_freq)[0]

print(len(ans))
print('\n'.join(map(str, ans.tolist())))
0