結果

問題 No.607 開通777年記念
ユーザー keidenkeiden
提出日時 2024-09-21 18:09:07
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 779 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-09-21 18:09:13
合計ジャッジ時間 5,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
21,376 KB
testcase_01 AC 25 ms
15,872 KB
testcase_02 AC 25 ms
15,872 KB
testcase_03 AC 26 ms
16,000 KB
testcase_04 AC 25 ms
16,000 KB
testcase_05 AC 25 ms
16,128 KB
testcase_06 AC 24 ms
15,872 KB
testcase_07 AC 1,132 ms
20,736 KB
testcase_08 AC 24 ms
16,000 KB
testcase_09 AC 49 ms
17,152 KB
testcase_10 AC 50 ms
17,152 KB
testcase_11 TLE -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

(define yuki607
  (let*
    (
      (input (read-line))
      (n-m (map string->number (string-split input " ")))
      (n (car n-m))
      (m (cadr n-m))
      (r (make-vector n 0))
      (flag 0)
    )
    (define (process-line line)
      (let*
        (
          (a (map string->number (string-split line " ")))
          (d (list 0))
          (c 0)
        )
        (for-each
          (lambda (i)
            (vector-set! r i (+ (vector-ref r i) (list-ref a i)))
            (set! c (+ c (vector-ref r i)))
            (when (member (- c 777) d) (set! flag 1))
            (set! d (cons c d)))
          (iota n)
        )))
    (for-each
      (lambda (_) (process-line (read-line)))
      (iota m))
    (if (= flag 1)
      (display "YES\n")
      (display "NO\n"))))
0