結果

問題 No.1043 直列大学
ユーザー cunitaccunitac
提出日時 2020-05-01 22:38:30
言語 Nim
(2.0.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 710 bytes
コンパイル時間 3,414 ms
コンパイル使用メモリ 65,792 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 12:01:06
合計ジャッジ時間 12,146 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
5,248 KB
testcase_01 AC 12 ms
5,376 KB
testcase_02 AC 33 ms
5,376 KB
testcase_03 AC 14 ms
5,376 KB
testcase_04 AC 14 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 24 ms
5,376 KB
testcase_08 AC 24 ms
5,376 KB
testcase_09 AC 250 ms
5,376 KB
testcase_10 AC 299 ms
5,376 KB
testcase_11 AC 439 ms
6,940 KB
testcase_12 AC 472 ms
6,940 KB
testcase_13 AC 399 ms
6,940 KB
testcase_14 AC 440 ms
6,940 KB
testcase_15 AC 472 ms
6,940 KB
testcase_16 AC 413 ms
6,944 KB
testcase_17 AC 312 ms
6,944 KB
testcase_18 AC 304 ms
6,944 KB
testcase_19 AC 431 ms
6,940 KB
testcase_20 AC 322 ms
6,944 KB
testcase_21 AC 384 ms
6,944 KB
testcase_22 AC 408 ms
6,940 KB
testcase_23 AC 485 ms
6,944 KB
testcase_24 AC 341 ms
6,944 KB
testcase_25 AC 397 ms
6,944 KB
testcase_26 AC 430 ms
6,940 KB
testcase_27 AC 208 ms
6,944 KB
testcase_28 AC 393 ms
6,940 KB
testcase_29 WA -
testcase_30 AC 299 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils, math
let get = iterator:string =
    for s in stdin.readAll.split: yield s
proc read:int = get().parseInt
template mo(a) = a = a mod (10^9+7)

let n, m = read()
let v = newSeqWith(n, read())
let r = newSeqWith(m, read())
let a, b = read()

var vc, rc = 0.repeat(10^5 + 1)

vc[0] = 1
for v in v:
    for i in countdown(10^5 - v, 0):
        vc[i+v].inc vc[i]; vc[i+v].mo
vc[0] = 0

rc[0] = 1
for r in r:
    for i in countdown(10^5 - r, 0):
        rc[i+r].inc rc[i]; rc[i+r].mo
rc[0] = 0
for i in 1..10^5: rc[i].inc rc[i-1]; rc[i].mo

var cnt = 0
for v, c in vc:
    let rma = v div a
    let rmi = (v + b - 1) div b
    cnt.inc (rc[rma] - rc[max(0, rmi-1)]) * c
    cnt.mo

echo cnt
0