結果

問題 No.989 N×Mマス計算(K以上)
ユーザー rythem00359rythem00359
提出日時 2020-08-27 17:31:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,252 KB
最終ジャッジ日時 2024-04-25 10:38:15
合計ジャッジ時間 3,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 27 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 207 ms
16,384 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 72 ms
15,956 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 175 ms
15,128 KB
testcase_17 AC 69 ms
15,948 KB
testcase_18 AC 184 ms
13,184 KB
testcase_19 AC 129 ms
17,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
n,m,k=map(int,input().split())
op,*b=input().split()
b=sorted(list(map(int,b)))
a=sorted(list(int(input()) for _ in range(n)))
ans=0
if op=='+':
    for an in a:
        ans+=m-bisect_left(b,max(k-an,0))
    print(ans)
else:
    for an in a:
        ans+=m-bisect_left(b,k//an)
    print(ans)
0