結果
問題 | No.989 N×Mマス計算(K以上) |
ユーザー | kimiyuki |
提出日時 | 2020-02-14 22:08:47 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 473 bytes |
コンパイル時間 | 268 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 18,520 KB |
最終ジャッジ日時 | 2024-10-06 12:05:05 |
合計ジャッジ時間 | 3,112 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 30 ms
10,880 KB |
testcase_10 | AC | 195 ms
16,116 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 76 ms
15,568 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 179 ms
14,848 KB |
testcase_17 | AC | 72 ms
15,784 KB |
testcase_18 | AC | 170 ms
12,928 KB |
testcase_19 | AC | 128 ms
17,676 KB |
ソースコード
#!/usr/bin/env python3 import bisect def main(): h, w, k = map(int, input().split()) op, *b = input().split() b = list(map(int, b)) a = [ int(input()) for _ in range(h) ] a.sort() b.sort() c = 0 if op == '+': for a_y in a: c += w - bisect.bisect_left(b, k - a_y) elif op == '*': for a_y in a: c += w - bisect.bisect_left(b, (k - a_y + 1) // a_y) print(c) if __name__ == "__main__": main()