結果
問題 | No.335 門松宝くじ |
ユーザー | mkawa2 |
提出日時 | 2020-02-28 18:41:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,440 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-13 16:30:23 |
合計ジャッジ時間 | 1,918 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,624 KB |
testcase_01 | AC | 27 ms
10,624 KB |
testcase_02 | AC | 28 ms
10,624 KB |
testcase_03 | AC | 33 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | AC | 55 ms
10,880 KB |
testcase_06 | AC | 69 ms
10,752 KB |
testcase_07 | AC | 102 ms
10,752 KB |
testcase_08 | AC | 92 ms
11,008 KB |
testcase_09 | AC | 144 ms
10,880 KB |
testcase_10 | AC | 140 ms
11,008 KB |
testcase_11 | AC | 140 ms
11,008 KB |
testcase_12 | AC | 139 ms
10,880 KB |
testcase_13 | AC | 138 ms
11,008 KB |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def SI(): return sys.stdin.readline()[:-1] def main(): inf=10**9 n,m=MI() ss=[] for _ in range(m): ee=LI() lmx = [0] * n lmn = [0] * n rmx = [0] * n rmn = [0] * n mx=-inf mn=inf for i,e in enumerate(ee): lmx[i]=mx lmn[i]=mn if e>mx:mx=e if e<mn:mn=e mx=-inf mn=inf for i,e in enumerate(ee[::-1]): rmx[n-1-i]=mx rmn[n-1-i]=mn if e>mx:mx=e if e<mn:mn=e #print(lmx) #print(lmn) #print(rmx) #print(rmn) s=0 for j in range(n): for i in range(j): a,b=ee[i],ee[j] if a<b: if lmx[j]>b:s+=lmx[j] elif lmx[i]>a or rmn[j]<b:s+=b else: if rmx[i]>a:s+=rmx[i] elif rmx[j]>b or lmn[i]<a:s+=a ss.append(s) #print(ss) mx=max(ss) for i in range(m): if ss[i]==mx: print(i) break main()