結果

問題 No.1274 楽しい格子点
ユーザー marroncastlemarroncastle
提出日時 2020-10-30 23:42:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 66,872 KB
最終ジャッジ日時 2024-07-22 03:19:07
合計ジャッジ時間 3,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
53,976 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,816 KB
testcase_04 WA -
testcase_05 AC 39 ms
53,396 KB
testcase_06 WA -
testcase_07 AC 38 ms
52,460 KB
testcase_08 AC 38 ms
51,824 KB
testcase_09 AC 38 ms
53,340 KB
testcase_10 AC 40 ms
53,744 KB
testcase_11 WA -
testcase_12 AC 39 ms
54,952 KB
testcase_13 AC 38 ms
55,560 KB
testcase_14 WA -
testcase_15 AC 38 ms
52,816 KB
testcase_16 AC 39 ms
53,864 KB
testcase_17 AC 39 ms
54,744 KB
testcase_18 AC 39 ms
53,628 KB
testcase_19 AC 39 ms
54,128 KB
testcase_20 AC 38 ms
54,036 KB
testcase_21 AC 39 ms
53,012 KB
testcase_22 AC 37 ms
52,952 KB
testcase_23 AC 36 ms
53,668 KB
testcase_24 AC 36 ms
53,836 KB
testcase_25 AC 37 ms
52,392 KB
testcase_26 AC 37 ms
52,132 KB
testcase_27 AC 36 ms
53,536 KB
testcase_28 AC 36 ms
52,364 KB
testcase_29 AC 38 ms
53,488 KB
testcase_30 AC 37 ms
53,876 KB
testcase_31 AC 38 ms
53,532 KB
testcase_32 AC 37 ms
53,224 KB
testcase_33 AC 38 ms
52,572 KB
testcase_34 AC 37 ms
53,004 KB
testcase_35 AC 37 ms
53,132 KB
testcase_36 AC 37 ms
52,552 KB
testcase_37 AC 37 ms
52,940 KB
testcase_38 AC 36 ms
53,508 KB
testcase_39 AC 38 ms
52,460 KB
testcase_40 AC 37 ms
53,292 KB
testcase_41 AC 37 ms
52,188 KB
testcase_42 AC 37 ms
52,676 KB
testcase_43 AC 38 ms
52,256 KB
testcase_44 AC 37 ms
52,392 KB
testcase_45 AC 37 ms
52,392 KB
testcase_46 AC 38 ms
53,732 KB
testcase_47 AC 37 ms
52,944 KB
testcase_48 AC 37 ms
52,032 KB
testcase_49 AC 37 ms
52,728 KB
testcase_50 AC 37 ms
51,944 KB
testcase_51 AC 37 ms
53,436 KB
testcase_52 RE -
testcase_53 AC 37 ms
52,208 KB
testcase_54 AC 37 ms
53,076 KB
testcase_55 AC 39 ms
54,892 KB
testcase_56 WA -
testcase_57 AC 37 ms
53,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
A, B = map(int, input().split())
ans = 0
if A==B:
  for i in range(1,21,abs(A)):
    ans += 1/pow(i+i,i+i)
else:
  g = gcd(A,B)
  for i in range(1,21,g):
    for j in range(1,21,g):
      ans += 1/pow(i+j,i+j)
print(ans)
0