結果
問題 | No.796 well known |
ユーザー |
|
提出日時 | 2019-03-15 21:54:41 |
言語 | Scheme (Gauche-0.9.15) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 15 |
ソースコード
(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)