結果

問題 No.796 well known
ユーザー ducktailducktail
提出日時 2019-10-01 14:52:04
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-04-14 08:34:43
合計ジャッジ時間 7,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
15,872 KB
testcase_01 AC 24 ms
15,872 KB
testcase_02 AC 24 ms
15,872 KB
testcase_03 AC 24 ms
15,872 KB
testcase_04 AC 486 ms
20,736 KB
testcase_05 AC 534 ms
20,736 KB
testcase_06 AC 636 ms
20,736 KB
testcase_07 AC 161 ms
20,864 KB
testcase_08 AC 539 ms
20,864 KB
testcase_09 AC 360 ms
20,864 KB
testcase_10 AC 636 ms
20,864 KB
testcase_11 AC 106 ms
20,736 KB
testcase_12 AC 291 ms
20,736 KB
testcase_13 AC 488 ms
20,736 KB
testcase_14 AC 233 ms
20,736 KB
testcase_15 AC 323 ms
20,736 KB
testcase_16 AC 643 ms
20,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (main args)
  (let1 n (read)
        (let loop ([c n])
          (cond [(= c n) (format #t "1") (loop (- c 1))]
                [(= c 1) (format #t " 3\n")]
                [else (format #t " 3") (loop (- c 1))])))
  0)
0