結果

問題 No.796 well known
ユーザー ducktailducktail
提出日時 2019-03-15 21:54:41
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 773 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 32 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-07-01 20:52:30
合計ジャッジ時間 7,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
16,000 KB
testcase_01 AC 24 ms
15,872 KB
testcase_02 AC 24 ms
16,000 KB
testcase_03 AC 24 ms
16,000 KB
testcase_04 AC 587 ms
20,736 KB
testcase_05 AC 645 ms
20,864 KB
testcase_06 AC 773 ms
20,864 KB
testcase_07 AC 185 ms
20,864 KB
testcase_08 AC 639 ms
20,864 KB
testcase_09 AC 433 ms
20,736 KB
testcase_10 AC 760 ms
20,864 KB
testcase_11 AC 120 ms
20,736 KB
testcase_12 AC 350 ms
20,736 KB
testcase_13 AC 572 ms
20,736 KB
testcase_14 AC 272 ms
20,736 KB
testcase_15 AC 373 ms
20,736 KB
testcase_16 AC 756 ms
20,864 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