結果
問題 | No.105 arcの六角ボルト |
ユーザー | 👑 obakyan |
提出日時 | 2019-05-02 10:35:23 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
AC
|
実行時間 | 15 ms / 5,000 ms |
コード長 | 295 bytes |
コンパイル時間 | 374 ms |
コンパイル使用メモリ | 7,072 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-31 13:13:33 |
合計ジャッジ時間 | 723 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ソースコード
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