結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | ikd |
提出日時 | 2018-12-08 20:36:41 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 1,985 ms / 2,000 ms |
コード長 | 715 bytes |
コンパイル時間 | 3,341 ms |
コンパイル使用メモリ | 67,196 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-07-01 05:46:32 |
合計ジャッジ時間 | 24,623 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 1,760 ms
6,940 KB |
testcase_02 | AC | 1,520 ms
6,940 KB |
testcase_03 | AC | 1,779 ms
6,944 KB |
testcase_04 | AC | 1,850 ms
6,940 KB |
testcase_05 | AC | 1,897 ms
6,944 KB |
testcase_06 | AC | 1,548 ms
6,940 KB |
testcase_07 | AC | 1,581 ms
6,944 KB |
testcase_08 | AC | 1,843 ms
6,940 KB |
testcase_09 | AC | 1,847 ms
6,944 KB |
testcase_10 | AC | 1,985 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
evil_1 | TLE | - |
ソースコード
import strutils, sequtils proc main() = let nm = stdin.readLine.split.map(parseInt) (n, m) = (nm[0], nm[1]) a = (0..<m).mapIt(stdin.readLine.split.map(parseInt)) var acc = newSeqWith(m+1, newSeq[int64](m+1)) for i in 1..m: for j in 1..m: acc[i][j] = a[i-1][j-1]+acc[i][j-1]+(acc[i-1][j]-acc[i-1][j-1]) for _ in 0..<n: let yx = stdin.readLine.split.map(parseInt) (y, x) = (yx[0], yx[1]) var tot = 0 for sy in 1..m: for sx in 1..m: for gy in sy..m: for gx in sx..m: if sy<=y and y<=gy and sx<=x and x<=gx: if acc[gy][gx]-acc[gy][sx-1]-acc[sy-1][gx]+acc[sy-1][sx-1]==0: tot+=1 echo tot main()