結果

問題 No.989 N×Mマス計算(K以上)
ユーザー syunsukesyunsuke
提出日時 2020-09-16 19:36:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 87,352 KB
最終ジャッジ日時 2024-06-22 03:28:40
合計ジャッジ時間 2,492 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,744 KB
testcase_01 AC 34 ms
53,340 KB
testcase_02 AC 35 ms
53,348 KB
testcase_03 AC 34 ms
52,536 KB
testcase_04 AC 32 ms
53,256 KB
testcase_05 AC 35 ms
52,812 KB
testcase_06 AC 37 ms
52,924 KB
testcase_07 AC 35 ms
53,008 KB
testcase_08 AC 35 ms
53,500 KB
testcase_09 AC 35 ms
54,096 KB
testcase_10 AC 143 ms
82,772 KB
testcase_11 AC 142 ms
85,840 KB
testcase_12 AC 146 ms
84,132 KB
testcase_13 AC 115 ms
83,508 KB
testcase_14 AC 180 ms
87,352 KB
testcase_15 AC 94 ms
77,868 KB
testcase_16 AC 114 ms
80,356 KB
testcase_17 AC 114 ms
83,404 KB
testcase_18 AC 99 ms
76,168 KB
testcase_19 AC 141 ms
85,464 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