結果

問題 No.5016 Worst Mayor
ユーザー e869120e869120
提出日時 2023-04-29 12:58:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 10,688 KB
実行使用メモリ 24,396 KB
スコア 1,050,000,000
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 12:59:01
合計ジャッジ時間 9,357 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
23,668 KB
testcase_01 AC 104 ms
23,544 KB
testcase_02 AC 106 ms
24,300 KB
testcase_03 AC 104 ms
24,288 KB
testcase_04 AC 102 ms
24,036 KB
testcase_05 AC 106 ms
23,520 KB
testcase_06 AC 105 ms
24,024 KB
testcase_07 AC 106 ms
23,448 KB
testcase_08 AC 103 ms
23,416 KB
testcase_09 AC 107 ms
23,700 KB
testcase_10 AC 104 ms
23,548 KB
testcase_11 AC 105 ms
23,816 KB
testcase_12 AC 104 ms
24,324 KB
testcase_13 AC 102 ms
23,436 KB
testcase_14 AC 102 ms
23,988 KB
testcase_15 AC 102 ms
24,276 KB
testcase_16 AC 103 ms
23,508 KB
testcase_17 AC 103 ms
23,652 KB
testcase_18 AC 102 ms
23,408 KB
testcase_19 AC 103 ms
23,628 KB
testcase_20 AC 104 ms
23,440 KB
testcase_21 AC 104 ms
23,872 KB
testcase_22 AC 102 ms
24,000 KB
testcase_23 AC 104 ms
23,576 KB
testcase_24 AC 105 ms
23,228 KB
testcase_25 AC 103 ms
23,976 KB
testcase_26 AC 103 ms
23,676 KB
testcase_27 AC 105 ms
23,540 KB
testcase_28 AC 104 ms
23,652 KB
testcase_29 AC 104 ms
24,300 KB
testcase_30 AC 104 ms
24,228 KB
testcase_31 AC 104 ms
23,616 KB
testcase_32 AC 104 ms
23,820 KB
testcase_33 AC 102 ms
24,012 KB
testcase_34 AC 103 ms
23,552 KB
testcase_35 AC 102 ms
23,412 KB
testcase_36 AC 114 ms
24,228 KB
testcase_37 AC 104 ms
23,644 KB
testcase_38 AC 101 ms
24,276 KB
testcase_39 AC 104 ms
24,192 KB
testcase_40 AC 102 ms
24,228 KB
testcase_41 AC 102 ms
24,396 KB
testcase_42 AC 103 ms
23,976 KB
testcase_43 AC 103 ms
23,388 KB
testcase_44 AC 103 ms
23,640 KB
testcase_45 AC 105 ms
23,616 KB
testcase_46 AC 102 ms
23,652 KB
testcase_47 AC 104 ms
23,604 KB
testcase_48 AC 104 ms
23,820 KB
testcase_49 AC 104 ms
24,360 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