結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー Rin
提出日時 2015-08-23 22:22:24
言語 Scheme
(Gauche-0.9.15)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 54 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-07-18 13:05:45
合計ジャッジ時間 1,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

(let (
      (goal (read (current-input-port)))
      )
    (let loop((i 1))
        (if (> goal (expt 2 i))
                (loop (+ i 1))
                (begin (display i) (newline))
        )
    )
)
0