結果

問題 No.1226 I hate Robot Arms
ユーザー tyawanmusityawanmusi
提出日時 2020-08-29 17:30:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 474 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 138,452 KB
最終ジャッジ日時 2025-01-01 20:37:17
合計ジャッジ時間 84,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
59,612 KB
testcase_01 AC 67 ms
138,452 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 714 ms
85,296 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import radians, sin, cos
n,q=map(int,input().split())
theta=[0]*n
length=[1]*n
for _ in range(q):
  query=list(map(int,input().split()))
  if query[0]==0:
    _,i,x=query
    theta[i-1]=x
  elif query[0]==1:
    _,i,x=query
    length[i-1]=x
  else:
    _,i=query
    x=y=0
    the=0
    for j in range(i):
      the+=theta[j]
      the%=360
      x+=length[j]*cos(radians(the))
      y+=length[j]*sin(radians(the))
    print('{:.9f}'.format(x),'{:.9f}'.format(y))
0