結果
問題 | No.105 arcの六角ボルト |
ユーザー | 👑 obakyan |
提出日時 | 2019-05-02 10:35:23 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
AC
|
実行時間 | 13 ms / 5,000 ms |
コード長 | 295 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 7,196 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-06-10 03:59:15 |
合計ジャッジ時間 | 798 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ソースコード
local ior = io.input() local t = ior:read("*n", "*l") for i = 1, t do ior:read("*l") local x, y = ior:read("*n", "*n", "*l") for j = 1, 5 do ior:read("*l") end local z = math.atan2(y, x) / math.pi * 180 + 360 while(55 < z) do z = z - 60 end print(string.format("%.8f", z)) end