結果
問題 | No.989 N×Mマス計算(K以上) |
ユーザー | convexineq |
提出日時 | 2020-02-14 21:46:32 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 162 ms / 2,000 ms |
コード長 | 858 bytes |
コンパイル時間 | 86 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 24,504 KB |
最終ジャッジ日時 | 2024-10-06 11:10:43 |
合計ジャッジ時間 | 2,133 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,496 KB |
testcase_01 | AC | 28 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | AC | 28 ms
10,624 KB |
testcase_04 | AC | 29 ms
10,624 KB |
testcase_05 | AC | 29 ms
10,624 KB |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,496 KB |
testcase_08 | AC | 30 ms
10,624 KB |
testcase_09 | AC | 29 ms
10,496 KB |
testcase_10 | AC | 117 ms
19,672 KB |
testcase_11 | AC | 106 ms
18,936 KB |
testcase_12 | AC | 120 ms
20,496 KB |
testcase_13 | AC | 69 ms
16,008 KB |
testcase_14 | AC | 162 ms
24,504 KB |
testcase_15 | AC | 65 ms
14,280 KB |
testcase_16 | AC | 97 ms
18,192 KB |
testcase_17 | AC | 69 ms
15,712 KB |
testcase_18 | AC | 83 ms
15,652 KB |
testcase_19 | AC | 102 ms
19,104 KB |
ソースコード
# coding: utf-8 # Your code here! import sys readline = sys.stdin.readline read = sys.stdin.read n,m,k = [int(i) for i in readline().split()] x = read().split() op = x[0] b = list(map(lambda x: int(x),x[1:m+1])) a = list(map(lambda x: int(x),x[m+1:])) #a.sort() b.sort() """ if op == "+": from itertools import Counter C = Counter(b) ans = 0 for ai in a: if a == 0: ans += C[0] else: ans += C[k-a] print(ans) else: ans = 0 for ai in a: ans += m - bis(b,k//ai) print(ans) """ #print(op,b,a) if op == "+": from bisect import bisect_left as bis ans = 0 for ai in a: ans += m - bis(b,k-ai) print(ans) else: from bisect import bisect_right as bis ans = 0 for ai in a: ans += m - bis(b,(k-1)//ai) print(ans)