博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
题解-python-CodeForces 227A
阅读量:5073 次
发布时间:2019-06-12

本文共 428 字,大约阅读时间需要 1 分钟。

codeforces题目,用python写

本题输入三个点坐标,考察叉积,若大于0则right,小于0则left,等于0则towards

代码:

a = raw_input().split()b = raw_input().split()c = raw_input().split()xa = int(a[0])ya = int(a[1])xb = int(b[0])yb = int(b[1])xc = int(c[0])yc = int(c[1])x1 = xb - xax2 = xb - xcy1 = yb - yay2 = yb - ycres = x1 * y2 - x2 * y1if res > 0:    print "RIGHT"elif res < 0:    print "LEFT"else:    print "TOWARDS"

转载于:https://www.cnblogs.com/zjutzz/p/3263760.html

你可能感兴趣的文章
有关字体的专业名词解释
查看>>
iptables防火墙相关命令详解
查看>>
图片点击后无虚线框
查看>>
最长公共前缀
查看>>
夺命雷公狗—angularjs—10—angularjs里面的内置函数
查看>>
一大波编程视频资料赠送(亲自整理)
查看>>
几款在线脑图制作工具
查看>>
hdu1078 dp(递推)+搜索
查看>>
移动端开发兼容性处理整理
查看>>
Jzoj5451【NOIP2017提高A组冲刺11.4】Genocide(待补充)
查看>>
input的disable和readonly
查看>>
Mysql命令行导入sql数据
查看>>
微信小程序--bind 和catch区别
查看>>
【jzoj】2018.1.31 NOIP普及组——D组模拟赛
查看>>
[Cypress] Use the Most Robust Selector for Cypress Tests
查看>>
[Unit Testing] AngularJS Unit Testing - Karma
查看>>
[Typescript] Typescript Enums vs Booleans when Handling State
查看>>
[TypeScript] Installing TypeScript and Running the TypeScript Compiler (tsc)
查看>>
[HTTP2] HTTP1 probs and HTTP2 saves
查看>>
P3371 【模板】单源最短路径
查看>>