結果

問題 No.5016 Worst Mayor
ユーザー arbtarbt
提出日時 2023-04-29 14:11:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 86,864 KB
実行使用メモリ 93,724 KB
スコア 1,495,180,150
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 14:12:18
合計ジャッジ時間 12,199 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
93,404 KB
testcase_01 AC 164 ms
93,268 KB
testcase_02 AC 162 ms
93,384 KB
testcase_03 AC 161 ms
93,384 KB
testcase_04 AC 169 ms
93,272 KB
testcase_05 AC 164 ms
93,268 KB
testcase_06 AC 193 ms
93,596 KB
testcase_07 AC 164 ms
93,204 KB
testcase_08 AC 164 ms
93,192 KB
testcase_09 AC 168 ms
93,568 KB
testcase_10 AC 162 ms
93,588 KB
testcase_11 AC 165 ms
92,828 KB
testcase_12 AC 189 ms
93,328 KB
testcase_13 AC 164 ms
93,164 KB
testcase_14 AC 167 ms
93,372 KB
testcase_15 AC 167 ms
92,976 KB
testcase_16 AC 162 ms
92,996 KB
testcase_17 AC 171 ms
92,896 KB
testcase_18 AC 192 ms
93,724 KB
testcase_19 AC 184 ms
93,596 KB
testcase_20 AC 181 ms
93,076 KB
testcase_21 AC 167 ms
93,664 KB
testcase_22 AC 170 ms
93,612 KB
testcase_23 AC 170 ms
93,280 KB
testcase_24 AC 167 ms
93,052 KB
testcase_25 AC 173 ms
93,136 KB
testcase_26 AC 163 ms
92,896 KB
testcase_27 AC 166 ms
93,424 KB
testcase_28 AC 161 ms
93,120 KB
testcase_29 AC 168 ms
93,000 KB
testcase_30 AC 164 ms
93,100 KB
testcase_31 AC 181 ms
93,564 KB
testcase_32 AC 167 ms
93,476 KB
testcase_33 AC 164 ms
93,252 KB
testcase_34 AC 167 ms
92,920 KB
testcase_35 AC 166 ms
92,976 KB
testcase_36 AC 164 ms
92,860 KB
testcase_37 AC 191 ms
92,916 KB
testcase_38 AC 162 ms
93,284 KB
testcase_39 AC 160 ms
93,392 KB
testcase_40 AC 166 ms
93,180 KB
testcase_41 AC 168 ms
93,592 KB
testcase_42 AC 173 ms
93,084 KB
testcase_43 AC 176 ms
93,352 KB
testcase_44 AC 171 ms
93,104 KB
testcase_45 AC 168 ms
93,232 KB
testcase_46 AC 164 ms
92,864 KB
testcase_47 AC 167 ms
92,872 KB
testcase_48 AC 166 ms
93,220 KB
testcase_49 AC 165 ms
92,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Input
N, T = map(int, input().split())
A = [ 0 ] * N
B = [ 0 ] * N
C = [ 0 ] * N
D = [ 0 ] * N
for i in range(N):
	A[i], B[i], C[i], D[i] = map(int, input().split())

# Interaction
for i in range(T):
	CurrentMoney = 0
	CurrentCorps = 0
	CurrentMoney, CurrentCorps = map(int, input().split())
	if(i<100):
		print("2")
	elif(i==100):
		print("1 7 7 8 7")
	else:
  		print("3")
0