結果

問題 No.881 sin(x)/xの和
ユーザー dangodango
提出日時 2023-06-18 20:54:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-06-26 08:54:58
合計ジャッジ時間 2,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
60,668 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 45 ms
53,120 KB
testcase_03 AC 45 ms
53,248 KB
testcase_04 AC 56 ms
61,440 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 44 ms
52,480 KB
testcase_08 AC 49 ms
55,808 KB
testcase_09 AC 45 ms
53,320 KB
testcase_10 AC 46 ms
53,504 KB
testcase_11 AC 48 ms
54,656 KB
testcase_12 AC 51 ms
55,296 KB
testcase_13 AC 45 ms
53,248 KB
testcase_14 AC 43 ms
52,736 KB
testcase_15 AC 42 ms
52,608 KB
testcase_16 AC 46 ms
54,272 KB
testcase_17 AC 42 ms
52,992 KB
testcase_18 AC 43 ms
52,992 KB
testcase_19 AC 46 ms
54,400 KB
testcase_20 AC 40 ms
52,224 KB
testcase_21 AC 46 ms
54,016 KB
testcase_22 AC 53 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = 0
for i in range(int(input())):
    x, a = map(float,input().split())
    ans += a * 355/113
print(ans)
0