結果
問題 | No.607 開通777年記念 |
ユーザー | むらため |
提出日時 | 2019-01-18 08:53:56 |
言語 | Nim (2.0.2) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 654 bytes |
コンパイル時間 | 2,231 ms |
コンパイル使用メモリ | 61,376 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 10:14:52 |
合計ジャッジ時間 | 3,022 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 22 ms
5,376 KB |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import sequtils proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .} proc scan(): int32 = var minus = false while true: var k = getchar_unlocked() if k == '-' : minus = true elif k < '0' or k > '9': break else: result = 10 * result + k.ord.int32 - '0'.ord.int32 if minus: result *= -1 template times*(n:int,body) = (for _ in 0..<n: body) let n = scan() let m = scan() var A = newSeq[int32](n) m.times: for i in 0..<n: A[i] += scan() var x = 0 var sum = 0i32 # [x,y] for y in 0..<n: sum += A[y] while sum > 777 : sum -= A[x] x += 1 if sum == 777: quit "YES",0 echo "NO"