結果

問題 No.1624 三角形の反射
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-20 19:06:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-09-20 19:06:58
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 49 ms
61,056 KB
testcase_04 AC 57 ms
61,312 KB
testcase_05 AC 45 ms
60,160 KB
testcase_06 AC 47 ms
60,672 KB
testcase_07 AC 52 ms
60,928 KB
testcase_08 AC 47 ms
61,184 KB
testcase_09 AC 45 ms
60,416 KB
testcase_10 AC 54 ms
61,184 KB
testcase_11 AC 51 ms
61,056 KB
testcase_12 AC 43 ms
60,416 KB
testcase_13 AC 45 ms
60,288 KB
testcase_14 AC 49 ms
61,184 KB
testcase_15 AC 48 ms
61,312 KB
testcase_16 AC 46 ms
60,416 KB
testcase_17 AC 46 ms
60,288 KB
testcase_18 AC 47 ms
60,416 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 39 ms
52,608 KB
testcase_21 AC 36 ms
52,224 KB
testcase_22 AC 35 ms
52,224 KB
testcase_23 AC 48 ms
60,928 KB
testcase_24 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=input().split(".")
x=1000
y=int(a+b)
from math import gcd
g=gcd(x,y)
x//=g
y//=g
c=x-1+y-1
if x==y:
  print("A",1)
  exit()
for i in range(x+y+1):
  if y>x:
    c+=0<(2*i+1)*x<x*(y-x)
    c+=0<(-(2*i+1))*x<x*(y-x)
    c+=0<(2*i+1)*x<x*(y+x)
  else:
    c+=0>(2*i+1)*x>x*(y-x)
    c+=0>(-(2*i+1))*x>x*(y-x)
    c+=0<(2*i+1)*x<x*(y+x)
if y%2==0 and x%2==0:
  print("A",c)
if y%2==0 and x%2==1:
  print("B",c)
if y%2==1 and x%2==0:
  print("C",c)
if y%2==1 and x%2==1:
  print("A",c)
0