結果

問題 No.1009 面積の求め方
ユーザー stngstng
提出日時 2022-08-17 20:54:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 75,928 KB
最終ジャッジ日時 2024-10-05 01:47:54
合計ジャッジ時間 1,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
75,408 KB
testcase_01 AC 33 ms
53,500 KB
testcase_02 AC 47 ms
75,448 KB
testcase_03 AC 55 ms
75,428 KB
testcase_04 AC 33 ms
52,216 KB
testcase_05 AC 35 ms
52,460 KB
testcase_06 AC 53 ms
75,124 KB
testcase_07 AC 50 ms
75,444 KB
testcase_08 AC 50 ms
75,456 KB
testcase_09 AC 41 ms
65,548 KB
testcase_10 AC 42 ms
69,308 KB
testcase_11 AC 42 ms
72,616 KB
testcase_12 AC 49 ms
75,120 KB
testcase_13 AC 50 ms
75,408 KB
testcase_14 AC 52 ms
75,120 KB
testcase_15 AC 56 ms
75,596 KB
testcase_16 AC 57 ms
75,428 KB
testcase_17 AC 52 ms
75,448 KB
testcase_18 AC 54 ms
75,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
ans = 0
for i in range(-b,-a):
    di = i
    for j in range(10**5):
        ans += abs(di**2+(a+b)*di+a*b)*10**(-5)
        di += 10**(-5)
print(ans)
0