結果

問題 No.989 N×Mマス計算(K以上)
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-02-14 22:15:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 92,440 KB
最終ジャッジ日時 2024-10-06 12:29:40
合計ジャッジ時間 2,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 121 ms
85,180 KB
testcase_11 AC 110 ms
90,112 KB
testcase_12 AC 123 ms
88,168 KB
testcase_13 AC 92 ms
86,228 KB
testcase_14 AC 146 ms
92,440 KB
testcase_15 AC 93 ms
78,336 KB
testcase_16 AC 107 ms
81,988 KB
testcase_17 AC 96 ms
86,256 KB
testcase_18 AC 105 ms
79,744 KB
testcase_19 AC 116 ms
90,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
bs = []
fs = []
for i in range(N+1):
    if i == 0:
        X = input().split()
        e = X[0] == '+'
        bs = list(map(int, X[1:]))
        bs.sort()
        continue
    x = int(input())
    fs.append(x)
fs.sort()
if e:
    j = N-1
    r = 0
    for b in bs:
        k = K-b
#        print(j)
        while j >= 0:
#            print(j, fs[j], k)
            if fs[j] < k:
                break
            j -= 1
#        print(k, fs, N-(j+1))
        r += N-j-1
    print(r)
else:
    j = N-1
    r = 0
    for b in bs:
        k = -(-K//b)
        while j >= 0:
            if fs[j] < k:
                break
            j -= 1
        r += N-j-1
    print(r)
0