結果

問題 No.607 開通777年記念
ユーザー ducktailducktail
提出日時 2017-12-26 23:38:51
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 663 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 27,680 KB
最終ジャッジ日時 2024-05-10 03:40:01
合計ジャッジ時間 4,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

(define (three-seven? l)
  (cond [(null? l) #f]
        [(member (+ 777 (car l)) (cdr l)) #t]
        [else (three-seven? (cdr l))]))

(define (read-acc n)
  (let loop ([x n]
             [l '(0)])
    (cond [(zero? x) (reverse l)]
          [else (let ([v (read)])
                  (loop (- x 1) (cons (+ (car l) v) l)))])))

(define (main args)
  (let* ([n (read)]
         [m (read)])
    (print
     (let loop ([x m]
                [l (make-list (+ n 1) 0)])
       (cond [(zero? x) "NO"]
             [else (let* ([rl (read-acc n)]
                          [nl (map + l rl)])
                     (if (three-seven? nl) "YES" (loop (- x 1) nl)))]))))
  0)
0