結果

問題 No.5016 Worst Mayor
ユーザー arbtarbt
提出日時 2023-04-29 13:15:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 87,364 KB
実行使用メモリ 93,828 KB
スコア 1,050,000,000
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 13:15:51
合計ジャッジ時間 13,171 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
93,344 KB
testcase_01 AC 185 ms
93,600 KB
testcase_02 AC 192 ms
93,512 KB
testcase_03 AC 185 ms
93,260 KB
testcase_04 AC 190 ms
93,212 KB
testcase_05 AC 190 ms
93,276 KB
testcase_06 AC 188 ms
93,240 KB
testcase_07 AC 185 ms
93,532 KB
testcase_08 AC 186 ms
93,600 KB
testcase_09 AC 190 ms
93,272 KB
testcase_10 AC 189 ms
93,612 KB
testcase_11 AC 188 ms
93,288 KB
testcase_12 AC 187 ms
93,472 KB
testcase_13 AC 184 ms
93,268 KB
testcase_14 AC 185 ms
93,396 KB
testcase_15 AC 188 ms
93,260 KB
testcase_16 AC 189 ms
93,516 KB
testcase_17 AC 187 ms
93,360 KB
testcase_18 AC 189 ms
93,220 KB
testcase_19 AC 188 ms
93,176 KB
testcase_20 AC 188 ms
93,480 KB
testcase_21 AC 189 ms
93,260 KB
testcase_22 AC 186 ms
93,320 KB
testcase_23 AC 188 ms
93,204 KB
testcase_24 AC 187 ms
93,620 KB
testcase_25 AC 186 ms
93,708 KB
testcase_26 AC 190 ms
93,308 KB
testcase_27 AC 218 ms
93,528 KB
testcase_28 AC 194 ms
93,132 KB
testcase_29 AC 187 ms
93,472 KB
testcase_30 AC 189 ms
93,428 KB
testcase_31 AC 192 ms
93,176 KB
testcase_32 AC 188 ms
93,680 KB
testcase_33 AC 191 ms
93,444 KB
testcase_34 AC 188 ms
93,304 KB
testcase_35 AC 188 ms
93,044 KB
testcase_36 AC 190 ms
93,376 KB
testcase_37 AC 190 ms
93,784 KB
testcase_38 AC 190 ms
93,488 KB
testcase_39 AC 190 ms
93,716 KB
testcase_40 AC 192 ms
93,288 KB
testcase_41 AC 191 ms
93,828 KB
testcase_42 AC 187 ms
93,720 KB
testcase_43 AC 190 ms
93,212 KB
testcase_44 AC 190 ms
92,900 KB
testcase_45 AC 189 ms
93,024 KB
testcase_46 AC 191 ms
93,764 KB
testcase_47 AC 190 ms
93,796 KB
testcase_48 AC 189 ms
93,780 KB
testcase_49 AC 186 ms
93,352 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())
	print("3")
0