結果

問題 No.796 well known
ユーザー ducktailducktail
提出日時 2019-10-01 14:52:04
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 31 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-10-03 05:42:05
合計ジャッジ時間 5,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
15,872 KB
testcase_01 AC 20 ms
16,000 KB
testcase_02 AC 21 ms
15,872 KB
testcase_03 AC 20 ms
15,872 KB
testcase_04 AC 417 ms
20,736 KB
testcase_05 AC 456 ms
20,864 KB
testcase_06 AC 537 ms
20,736 KB
testcase_07 AC 130 ms
20,864 KB
testcase_08 AC 454 ms
20,736 KB
testcase_09 AC 300 ms
20,736 KB
testcase_10 AC 527 ms
20,864 KB
testcase_11 AC 89 ms
20,864 KB
testcase_12 AC 244 ms
20,864 KB
testcase_13 AC 410 ms
20,608 KB
testcase_14 AC 203 ms
20,736 KB
testcase_15 AC 283 ms
20,736 KB
testcase_16 AC 555 ms
20,608 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