結果

問題 No.989 N×Mマス計算(K以上)
ユーザー syunsukesyunsuke
提出日時 2020-09-16 19:33:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 86,764 KB
最終ジャッジ日時 2024-06-22 03:28:37
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,876 KB
testcase_01 AC 33 ms
52,120 KB
testcase_02 AC 34 ms
53,076 KB
testcase_03 AC 35 ms
53,572 KB
testcase_04 AC 34 ms
53,288 KB
testcase_05 AC 35 ms
53,212 KB
testcase_06 WA -
testcase_07 AC 35 ms
53,384 KB
testcase_08 WA -
testcase_09 AC 37 ms
53,012 KB
testcase_10 AC 147 ms
82,660 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 113 ms
83,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 114 ms
80,292 KB
testcase_17 AC 114 ms
83,428 KB
testcase_18 AC 100 ms
76,144 KB
testcase_19 AC 141 ms
85,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K=map(int,input().split())

B=list(input().split())
OP=B[0]
B=B[1:]
#print(B)
for i in range(len(B)):
    B[i]=int(B[i])
B.sort()
B=B+[10**10]
#print(B)

import bisect

ans=0
if OP=="+":
    for i in range(H):
        A=int(input())
        x=bisect.bisect_left(B,K-0.1-A)
        ans+=(W-x)
    print(ans)
else:
    for i in range(H):
        A=int(input())
        x=bisect.bisect_left(B,K//A)
        ans+=(W-x)
    print(ans)
        
    
0