結果

問題 No.1121 Social Distancing in Cinema
ユーザー KeroruKeroru
提出日時 2020-07-22 23:43:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 153,504 KB
最終ジャッジ日時 2024-06-23 01:50:41
合計ジャッジ時間 6,597 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 34 ms
52,480 KB
testcase_08 AC 34 ms
52,608 KB
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 34 ms
52,352 KB
testcase_11 AC 36 ms
52,224 KB
testcase_12 AC 37 ms
52,736 KB
testcase_13 AC 41 ms
59,008 KB
testcase_14 AC 46 ms
61,824 KB
testcase_15 AC 48 ms
65,280 KB
testcase_16 AC 58 ms
78,848 KB
testcase_17 AC 105 ms
115,024 KB
testcase_18 AC 159 ms
136,912 KB
testcase_19 AC 177 ms
153,184 KB
testcase_20 AC 45 ms
65,408 KB
testcase_21 AC 45 ms
64,384 KB
testcase_22 AC 44 ms
64,128 KB
testcase_23 AC 45 ms
62,848 KB
testcase_24 AC 38 ms
59,136 KB
testcase_25 AC 77 ms
97,408 KB
testcase_26 AC 90 ms
106,484 KB
testcase_27 AC 44 ms
62,464 KB
testcase_28 AC 162 ms
143,324 KB
testcase_29 AC 88 ms
103,192 KB
testcase_30 AC 80 ms
96,896 KB
testcase_31 AC 178 ms
153,504 KB
testcase_32 AC 156 ms
129,280 KB
testcase_33 AC 93 ms
103,168 KB
testcase_34 AC 85 ms
103,248 KB
testcase_35 AC 153 ms
132,476 KB
testcase_36 AC 175 ms
151,444 KB
testcase_37 AC 75 ms
94,976 KB
testcase_38 AC 90 ms
106,880 KB
testcase_39 AC 166 ms
142,224 KB
testcase_40 AC 64 ms
86,016 KB
testcase_41 AC 48 ms
68,096 KB
testcase_42 AC 175 ms
151,452 KB
testcase_43 AC 178 ms
151,676 KB
testcase_44 AC 178 ms
151,684 KB
testcase_45 AC 183 ms
151,684 KB
testcase_46 AC 171 ms
146,072 KB
testcase_47 AC 33 ms
52,096 KB
testcase_48 AC 34 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*t=map(int,open(0).read().split())
d=90
c=[0]*d
p=[[]for i in' '*d]
for i in range(n):x,y=t[i*2:-~i*2];k=y%18;z=k%9*10+(x+5*(k>8))%10;c[z]+=1;p[z]+=i+1,
t=c[0]
a=0
for i in range(d):
 if t<c[i]:t=c[i];a=i
print(t)
print(*p[a])
0