結果
問題 | No.896 友達以上恋人未満 |
ユーザー | milanis48663220 |
提出日時 | 2019-09-27 23:19:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 401 bytes |
コンパイル時間 | 510 ms |
コンパイル使用メモリ | 54,440 KB |
実行使用メモリ | 110,036 KB |
最終ジャッジ日時 | 2024-09-25 01:54:18 |
合計ジャッジ時間 | 953 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
#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++){ } }