結果

問題 No.896 友達以上恋人未満
ユーザー milanis48663220milanis48663220
提出日時 2019-09-27 23:19:19
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 54,800 KB
実行使用メモリ 124,360 KB
最終ジャッジ日時 2023-10-25 06:30:52
合計ジャッジ時間 1,092 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

long z[1<<24];
long Y[1<<24];
int x[1000], y[1000], a[1000], b[1000];

int main(){
    int M, N, mx, my, ax, ay, MOD;
    cin >> M >> N >> mx >> my >> ax >> ay >> MOD;
    for(int i = 0; i < M; i++){
        cin >> x[i] >> y[i] >> a[i] >> b[i];
        z[x[i]] += y[i];
    }
    int xp = x[M-1];
    int yp = y[M-1];
    for(int i = M; i < N; i++){

    }
}
0