QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#801993#9797. Who Am I?ert#AC ✓0ms3652kbC++14800b2024-12-07 11:13:542024-12-07 11:13:55

Judging History

你现在查看的是最新测评结果

  • [2024-12-07 11:13:55]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3652kb
  • [2024-12-07 11:13:54]
  • 提交

answer

#include <bits/stdc++.h>
 
using namespace std;
using i64 = long long;
using u64 = unsigned long long;
using u32 = unsigned;
using pii = pair<int,int>;

int main(){
    cin.tie(nullptr);
	ios::sync_with_stdio(false);

	cout << ".....##.#......" << endl;
	cout << ".....#.#.#....." << endl;
	cout << "......#######.." << endl;
	cout << ".....#......##." << endl;
	cout << "....##.......##" << endl;
	cout << "....#..###.##.#" << endl;
	cout << "....#.........#" << endl;
	cout << "....#.........#" << endl;
	cout << ".#####.......##" << endl;
	cout << "#######.....##." << endl;
	cout << "##...########.." << endl;
	cout << ".....#.....#.#." << endl;
	cout << ".....#.....####" << endl;
	cout << ".....##.....#.#" << endl;
	cout << "......#.....#.." << endl;

	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3652kb

input:



output:

.....##.#......
.....#.#.#.....
......#######..
.....#......##.
....##.......##
....#..###.##.#
....#.........#
....#.........#
.#####.......##
#######.....##.
##...########..
.....#.....#.#.
.....#.....####
.....##.....#.#
......#.....#..

result:

ok match puzzle 0 qls