結果
問題 | No.387 ハンコ |
ユーザー | vjudge1 |
提出日時 | 2024-10-13 11:04:54 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 525 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-13 11:04:56 |
合計ジャッジ時間 | 1,347 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
ソースコード
def Hoa(n, m, S, a, b): tong = 0 for j in range(m): x, y = 0, n - 1 while x <= y: i = (x + y) // 2 if a[i] + b[j] <= S: x = i + 1 else: y = i - 1 if x > 0: tong = max(tong, a[x - 1] + b[j]) return tong n, m, S = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) kq = Hoa(n, m, S, a, b) print(kq) a,b = map(int, input().split()) g = (a+2)*(a+1)//2 print(g*(b+1))