結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | むらため |
提出日時 | 2019-01-25 20:41:49 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 1,681 ms / 2,000 ms |
コード長 | 892 bytes |
コンパイル時間 | 2,428 ms |
コンパイル使用メモリ | 62,024 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-07-01 10:51:18 |
合計ジャッジ時間 | 19,023 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,064 KB |
testcase_01 | AC | 1,187 ms
5,376 KB |
testcase_02 | AC | 927 ms
5,376 KB |
testcase_03 | AC | 1,305 ms
5,376 KB |
testcase_04 | AC | 1,479 ms
5,376 KB |
testcase_05 | AC | 1,575 ms
5,376 KB |
testcase_06 | AC | 1,017 ms
5,376 KB |
testcase_07 | AC | 959 ms
5,376 KB |
testcase_08 | AC | 1,290 ms
5,376 KB |
testcase_09 | AC | 1,464 ms
5,376 KB |
testcase_10 | AC | 1,681 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
evil_1 | TLE | - |
ソースコード
import sequtils template times*(n:int,body) = (for _ in 0..<n: body) proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .} proc scan(): int = var minus = false while true: let k = getchar_unlocked() if k == '-' : minus = true elif k < '0' or k > '9': break else: result = 10 * result + k.ord - '0'.ord if minus: result *= -1 let n = scan() let m = scan() var A = newSeqWith(m+1,newSeqWith(m+1,0)) for y in 1..m: for x in 1..m: A[x][y] = scan() for x in 1..m: for y in 1..m: A[x][y] = A[x-1][y] + A[x][y-1] - A[x-1][y-1] + A[x][y] proc calcSum(ax,ay,bx,by:int):int = A[bx][by] - A[bx][ay] - A[ax][by] + A[ax][ay] n.times: let y = scan() let x = scan() var ans = 0 for ax in 0..<x: for ay in 0..<y: for bx in x..m: for by in y..m: if calcSum(ax,ay,bx,by) == 0: ans += 1 echo ans