結果

問題 No.593 4進FizzBuzz
ユーザー ducktailducktail
提出日時 2017-12-30 20:27:03
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 119,484 KB
最終ジャッジ日時 2024-06-01 08:44:34
合計ジャッジ時間 12,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
15,744 KB
testcase_01 AC 24 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
15,872 KB
testcase_05 AC 26 ms
16,000 KB
testcase_06 AC 26 ms
15,744 KB
testcase_07 AC 26 ms
15,872 KB
testcase_08 AC 25 ms
15,872 KB
testcase_09 AC 26 ms
16,000 KB
testcase_10 AC 25 ms
15,872 KB
testcase_11 AC 25 ms
15,872 KB
testcase_12 AC 25 ms
15,872 KB
testcase_13 AC 26 ms
16,000 KB
testcase_14 AC 26 ms
15,872 KB
testcase_15 AC 25 ms
15,872 KB
testcase_16 AC 476 ms
119,280 KB
testcase_17 AC 473 ms
119,428 KB
testcase_18 AC 471 ms
119,372 KB
testcase_19 AC 476 ms
119,432 KB
testcase_20 AC 477 ms
119,460 KB
testcase_21 AC 470 ms
119,424 KB
testcase_22 AC 474 ms
119,324 KB
testcase_23 AC 470 ms
119,376 KB
testcase_24 AC 478 ms
119,260 KB
testcase_25 AC 474 ms
119,424 KB
testcase_26 AC 491 ms
119,376 KB
testcase_27 AC 492 ms
119,264 KB
testcase_28 AC 488 ms
119,448 KB
testcase_29 AC 489 ms
119,460 KB
testcase_30 AC 482 ms
119,340 KB
testcase_31 AC 478 ms
119,364 KB
testcase_32 AC 480 ms
119,256 KB
testcase_33 AC 480 ms
119,484 KB
testcase_34 AC 481 ms
119,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (classify ls)
  (let loop ([a 0]
             [b 0]
             [ls ls])
    (cond [(null? ls) (values a b)]
          [(null? (cdr ls)) (values b (+ a (car ls)))]
          [else (loop (+ a (car ls)) (+ b (cadr ls)) (cddr ls))])))

(define (main args)
  (let* ([s (read-line)]
         [ls (map digit->integer (string->list s))])
    (receive (o e) (classify ls)
             (print
              (cond [(and (zero? (modulo (+ o e) 3)) (zero? (modulo (- e o) 5))) "FizzBuzz"]
                    [(zero? (modulo (+ o e) 3)) "Fizz"]
                    [(zero? (modulo (- e o) 5)) "Buzz"]
                    [else s]))))
  0)
0