結果

問題 No.1121 Social Distancing in Cinema
ユーザー 双六双六
提出日時 2020-07-22 22:46:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-06-22 23:39:48
合計ジャッジ時間 6,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,336 KB
testcase_01 AC 46 ms
62,208 KB
testcase_02 AC 46 ms
62,080 KB
testcase_03 AC 47 ms
62,592 KB
testcase_04 AC 49 ms
62,336 KB
testcase_05 AC 48 ms
62,464 KB
testcase_06 AC 48 ms
62,208 KB
testcase_07 AC 47 ms
62,848 KB
testcase_08 AC 47 ms
62,592 KB
testcase_09 AC 48 ms
62,208 KB
testcase_10 AC 48 ms
62,720 KB
testcase_11 AC 49 ms
63,232 KB
testcase_12 AC 49 ms
63,360 KB
testcase_13 AC 49 ms
64,640 KB
testcase_14 AC 58 ms
67,840 KB
testcase_15 AC 58 ms
72,832 KB
testcase_16 AC 70 ms
78,720 KB
testcase_17 AC 88 ms
79,616 KB
testcase_18 AC 107 ms
79,616 KB
testcase_19 AC 114 ms
79,616 KB
testcase_20 AC 60 ms
72,576 KB
testcase_21 AC 60 ms
71,424 KB
testcase_22 AC 59 ms
71,040 KB
testcase_23 AC 55 ms
68,224 KB
testcase_24 AC 54 ms
65,152 KB
testcase_25 AC 82 ms
79,360 KB
testcase_26 AC 86 ms
79,232 KB
testcase_27 AC 58 ms
68,992 KB
testcase_28 AC 109 ms
79,616 KB
testcase_29 AC 85 ms
79,232 KB
testcase_30 AC 76 ms
78,976 KB
testcase_31 AC 108 ms
79,360 KB
testcase_32 AC 101 ms
79,360 KB
testcase_33 AC 82 ms
79,360 KB
testcase_34 AC 84 ms
79,232 KB
testcase_35 AC 105 ms
79,616 KB
testcase_36 AC 111 ms
79,616 KB
testcase_37 AC 79 ms
78,848 KB
testcase_38 AC 85 ms
79,232 KB
testcase_39 AC 109 ms
79,744 KB
testcase_40 AC 75 ms
78,976 KB
testcase_41 AC 68 ms
78,848 KB
testcase_42 AC 110 ms
79,616 KB
testcase_43 AC 110 ms
79,360 KB
testcase_44 AC 111 ms
79,616 KB
testcase_45 AC 110 ms
79,360 KB
testcase_46 AC 109 ms
79,488 KB
testcase_47 AC 47 ms
62,208 KB
testcase_48 AC 45 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	table = [[0] * 600 for i in range(600)]
	for i in range(N):
		X, Y = getlist()
		table[X][Y] = i + 1

	for i in range(1, 10):
		for j in range(1, 9):
			val = 0
			B = []
			for p in range(55):
				for q in range(31):
					x1 = i + 10 * p
					y1 = j + 18 * q
					x2 = i + 5 + 10 * p
					y2 = j + 9 + 18 * q
					if table[x1][y1] != 0:
						val += 1
						B.append(table[x1][y1])
					if table[x2][y2] != 0:
						val += 1
						B.append(table[x2][y2])

			if N <= 90 * val:
				print(val)
				print(*B)
				return

if __name__ == '__main__':
	main()
0