結果

問題 No.881 sin(x)/xの和
ユーザー dangodango
提出日時 2023-06-18 20:54:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 86,952 KB
実行使用メモリ 75,476 KB
最終ジャッジ日時 2023-09-08 15:54:04
合計ジャッジ時間 3,976 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
75,476 KB
testcase_01 AC 82 ms
71,304 KB
testcase_02 AC 76 ms
71,316 KB
testcase_03 AC 78 ms
71,432 KB
testcase_04 AC 89 ms
75,192 KB
testcase_05 AC 73 ms
71,520 KB
testcase_06 AC 76 ms
71,004 KB
testcase_07 AC 73 ms
71,196 KB
testcase_08 AC 82 ms
71,072 KB
testcase_09 AC 78 ms
71,432 KB
testcase_10 AC 82 ms
71,460 KB
testcase_11 AC 83 ms
71,012 KB
testcase_12 AC 82 ms
71,332 KB
testcase_13 AC 79 ms
71,072 KB
testcase_14 AC 76 ms
71,396 KB
testcase_15 AC 75 ms
71,460 KB
testcase_16 AC 78 ms
71,324 KB
testcase_17 AC 73 ms
71,200 KB
testcase_18 AC 75 ms
71,384 KB
testcase_19 AC 76 ms
71,196 KB
testcase_20 AC 73 ms
71,196 KB
testcase_21 AC 78 ms
71,232 KB
testcase_22 AC 83 ms
75,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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