結果

問題 No.1539 不可欠な部分
ユーザー そすうぽよそすうぽよ
提出日時 2021-06-08 21:37:37
言語 Ruby
(3.3.0)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-27 04:30:17
合計ジャッジ時間 28,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,544 KB
testcase_01 AC 598 ms
12,544 KB
testcase_02 AC 698 ms
12,416 KB
testcase_03 AC 346 ms
12,416 KB
testcase_04 AC 301 ms
12,800 KB
testcase_05 AC 250 ms
12,544 KB
testcase_06 AC 378 ms
12,416 KB
testcase_07 AC 155 ms
12,544 KB
testcase_08 AC 244 ms
12,672 KB
testcase_09 AC 584 ms
12,672 KB
testcase_10 AC 624 ms
12,672 KB
testcase_11 AC 691 ms
12,672 KB
testcase_12 AC 692 ms
12,800 KB
testcase_13 AC 699 ms
12,544 KB
testcase_14 AC 692 ms
12,672 KB
testcase_15 AC 756 ms
12,800 KB
testcase_16 AC 700 ms
12,544 KB
testcase_17 AC 672 ms
12,544 KB
testcase_18 AC 686 ms
12,672 KB
testcase_19 AC 701 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
n.times do |i|
  a=gets.to_i
  y = 1/Math::E/Math::PI**2
  puts (2*Math::E+Math::E**Math.cos(y/a))/3*y
end
0