結果
問題 | No.989 N×Mマス計算(K以上) |
ユーザー | hedwig100 |
提出日時 | 2020-04-06 17:01:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 672 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,332 KB |
最終ジャッジ日時 | 2024-07-06 13:21:30 |
合計ジャッジ時間 | 1,876 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | AC | 25 ms
10,752 KB |
testcase_03 | AC | 24 ms
10,752 KB |
testcase_04 | AC | 24 ms
10,752 KB |
testcase_05 | AC | 25 ms
10,624 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 25 ms
10,752 KB |
testcase_10 | AC | 86 ms
16,684 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 61 ms
15,700 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 70 ms
15,356 KB |
testcase_17 | AC | 60 ms
15,568 KB |
testcase_18 | AC | 54 ms
13,184 KB |
testcase_19 | AC | 85 ms
18,080 KB |
ソースコード
MOD = 10 ** 9 + 7 INF = 10 ** 10 import sys input = sys.stdin.readline sys.setrecursionlimit(100000000) dy = (-1,0,1,0) dx = (0,1,0,-1) from bisect import bisect_left,bisect_right def main(): n,m,k = map(int,input().split()) li = input().split() op = li[0] b = [int(li[i]) for i in range(1,len(li))] a = [int(input()) for i in range(n)] a.sort() if op == '+': cnt = 0 for i in range(m): cnt += n - bisect_left(a,k - b[i]) print(cnt) elif op == '*': cnt = 0 for i in range(m): cnt += n - bisect_left(a,k//b[i]) print(cnt) if __name__ =='__main__': main()