結果

問題 No.796 well known
ユーザー ducktailducktail
提出日時 2019-03-15 21:54:41
言語 Scheme
(Gauche-0.9.13)
結果
AC  
実行時間 1,822 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 5,336 KB
実行使用メモリ 15,752 KB
最終ジャッジ日時 2023-09-14 13:30:14
合計ジャッジ時間 16,584 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
11,636 KB
testcase_01 AC 18 ms
11,756 KB
testcase_02 AC 20 ms
11,656 KB
testcase_03 AC 17 ms
11,744 KB
testcase_04 AC 1,357 ms
13,728 KB
testcase_05 AC 1,486 ms
13,952 KB
testcase_06 AC 1,787 ms
13,792 KB
testcase_07 AC 411 ms
13,928 KB
testcase_08 AC 1,509 ms
14,020 KB
testcase_09 AC 961 ms
13,748 KB
testcase_10 AC 1,822 ms
13,776 KB
testcase_11 AC 236 ms
13,980 KB
testcase_12 AC 777 ms
13,768 KB
testcase_13 AC 1,330 ms
13,756 KB
testcase_14 AC 605 ms
13,948 KB
testcase_15 AC 867 ms
13,852 KB
testcase_16 AC 1,769 ms
15,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (main args)
  (let ([n (read)])
    (display "1")
    (let loop ([x (- n 1)])
      (cond [(zero? x) #t]
            [else (format #t " ~a" 3)
                  (loop (- x 1))]))
    (newline))
  0)
0