結果
| 問題 | No.2628 Shrinkage |
| コンテスト | |
| ユーザー |
chro_96
|
| 提出日時 | 2024-02-16 23:14:52 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 747 bytes |
| 記録 | |
| コンパイル時間 | 133 ms |
| コンパイル使用メモリ | 28,544 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-09-28 21:54:42 |
| 合計ジャッジ時間 | 860 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 27 |
ソースコード
#include <stdio.h>
int main () {
int t = 0;
long long x1 = 0LL;
long long y1 = 0LL;
long long x2 = 0LL;
long long y2 = 0LL;
int res = 0;
res = scanf("%d", &t);
while (t > 0) {
long long ax = 0LL;
long long ay = 0LL;
long long bx = 0LL;
long long by = 0LL;
res = scanf("%lld", &x1);
res = scanf("%lld", &y1);
res = scanf("%lld", &x2);
res = scanf("%lld", &y2);
ax = x2-x1;
ay = y2-y1;
res = scanf("%lld", &x1);
res = scanf("%lld", &y1);
res = scanf("%lld", &x2);
res = scanf("%lld", &y2);
bx = x2-x1;
by = y2-y1;
if (ax*by == bx*ay && ax*ax+ay*ay > bx*bx+by*by) {
printf("Yes\n");
} else {
printf("No\n");
}
t--;
}
return 0;
}
chro_96