답안 #1048298

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1048298 2024-08-08T06:32:54 Z Huseyn123 Vision Program (IOI19_vision) C++17
0 / 100
78 ms 4768 KB
#include <bits/stdc++.h> 
#define pb push_back
#include "vision.h"
using namespace std;
void construct_network(int H, int W, int K) {
	vector<int> c;
	for(int i=0;i<H;i++){
		vector<int> d;
		for(int j=0;j<W;j++){
			for(int i1=i;i1<H;i1++){
				for(int j1=0;j1<W;j1++){
					if(abs(i1-i)+abs(j1-j)==K){
						d.pb(i1*W+j1);
					}
				}
			}
			int h=add_or(d);
			h=add_and({h,i*W+j});
			c.pb(h);
		}
	}
	int h=add_or(c);
}

Compilation message

vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:22:6: warning: unused variable 'h' [-Wunused-variable]
   22 |  int h=add_or(c);
      |      ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB on inputs (0, 0), (0, 2), expected 0, but computed 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB on inputs (0, 0), (0, 2), expected 0, but computed 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB on inputs (0, 0), (0, 2), expected 0, but computed 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB on inputs (0, 0), (0, 2), expected 0, but computed 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 604 KB on inputs (0, 0), (0, 2), expected 0, but computed 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB on inputs (0, 0), (1, 1), expected 0, but computed 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 78 ms 4768 KB WA in grader: Too many inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB on inputs (0, 0), (0, 2), expected 0, but computed 1
2 Halted 0 ms 0 KB -