結果
問題 | No.378 名声値を稼ごう |
ユーザー | kokoa1046 |
提出日時 | 2017-09-08 11:53:15 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 19 ms / 2,000 ms |
コード長 | 122 bytes |
コンパイル時間 | 55 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 15,872 KB |
最終ジャッジ日時 | 2024-06-30 03:09:42 |
合計ジャッジ時間 | 706 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
15,872 KB |
testcase_01 | AC | 18 ms
15,872 KB |
testcase_02 | AC | 18 ms
15,872 KB |
testcase_03 | AC | 18 ms
15,744 KB |
testcase_04 | AC | 18 ms
15,872 KB |
testcase_05 | AC | 19 ms
15,872 KB |
ソースコード
(define n (read)) (define (plusx x sum)(if (= x 0)sum(+ sum x (plusx (quotient x 2) sum)))) (print (- (* 2 n)(plusx n 0)))