結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | ayaoni |
提出日時 | 2020-12-04 09:32:55 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,330 ms / 5,000 ms |
コード長 | 901 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 82,440 KB |
実行使用メモリ | 81,872 KB |
最終ジャッジ日時 | 2024-09-14 20:00:04 |
合計ジャッジ時間 | 14,291 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
54,400 KB |
testcase_01 | AC | 45 ms
54,400 KB |
testcase_02 | AC | 1,321 ms
81,032 KB |
testcase_03 | AC | 1,090 ms
80,504 KB |
testcase_04 | AC | 641 ms
78,080 KB |
testcase_05 | AC | 473 ms
77,892 KB |
testcase_06 | AC | 259 ms
77,824 KB |
testcase_07 | AC | 110 ms
77,056 KB |
testcase_08 | AC | 295 ms
77,792 KB |
testcase_09 | AC | 1,321 ms
81,872 KB |
testcase_10 | AC | 45 ms
54,144 KB |
testcase_11 | AC | 1,078 ms
80,512 KB |
testcase_12 | AC | 1,192 ms
80,716 KB |
testcase_13 | AC | 962 ms
80,128 KB |
testcase_14 | AC | 1,330 ms
81,416 KB |
testcase_15 | AC | 1,191 ms
80,512 KB |
testcase_16 | AC | 139 ms
77,600 KB |
testcase_17 | AC | 851 ms
79,460 KB |
testcase_18 | AC | 722 ms
78,904 KB |
testcase_19 | AC | 125 ms
77,064 KB |
ソースコード
import sys from heapq import heappop,heappush,heapify from copy import deepcopy sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) N = I() A,B = LI(),LI() A = [A[i]<<11 for i in range(N)] B = [B[i]//2 for i in range(N)] B = B+B ans = 10**18 for i in range(N): X = deepcopy(A) heapify(X) for j in range(N): n = heappop(X) n0,n1 = divmod(n,1<<11) n0 += B[i+j] n1 += 1 heappush(X,(n0<<11)+n1) ans = min(ans,max(X[i] % (1<<11) for i in range(N))) print(ans)