結果

問題 No.605 板挟みの球面
ユーザー ducktailducktail
提出日時 2017-12-25 21:14:35
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 5,304 KB
実行使用メモリ 12,144 KB
最終ジャッジ日時 2023-08-22 19:22:52
合計ジャッジ時間 1,389 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
12,100 KB
testcase_01 AC 18 ms
11,864 KB
testcase_02 AC 18 ms
12,144 KB
testcase_03 AC 17 ms
11,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (main args)
  (let* ([a (read)]
         [b (read)])
    (print
     (* 2.0 (acos -1)
      (- b a))))
  0)
0