結果

問題 No.2628 Shrinkage
ユーザー 👑 chro_96chro_96
提出日時 2024-02-16 23:26:58
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 935 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-02-16 23:27:33
合計ジャッジ時間 1,184 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>

int main () {
  int t = 0;
  long long x1 = 0LL;
  long long y1 = 0LL;
  long long x2 = 0LL;
  long long y2 = 0LL;
  long long xx1 = 0LL;
  long long yy1 = 0LL;
  long long xx2 = 0LL;
  long long yy2 = 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", &xx1);
    res = scanf("%lld", &yy1);
    res = scanf("%lld", &xx2);
    res = scanf("%lld", &yy2);
    bx = xx2-xx1;
    by = yy2-yy1;
    if ((ax*by == bx*ay && ax*ax+ay*ay > bx*bx+by*by && ax*bx >= 0LL && ay*by >= 0LL) || (x1 == xx1 && y1 == yy1 && x2 == xx2 && y2 == yy2)) {
      printf("Yes\n");
    } else {
      printf("No\n");
    }
    t--;
  }
  
  return 0;
}
0