Submission #18618330
Source Code Expand
Copy
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> using namespace std; using ll = long long; using P = pair<int, int>; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } constexpr int H = 50; constexpr int W = 50; constexpr int K = 8; int grid[H][W]; bool used[H][W]; vector<P> ps; inline void input(){ int __; cin >> __ >> __ >> __; for(int r = 0; r < H; ++r){ for(int c = 0; c < W; ++c){ char ch; cin >> ch; grid[r][c] = ch - '0'; } } } inline void output(){ cout << 0 << '\n'; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); input(); output(); }
Submission Info
Submission Time | |
---|---|
Task | A - Multiple Pieces |
User | outline |
Language | C++ (GCC 9.2.1) |
Score | 0 |
Code Size | 1464 Byte |
Status | AC |
Exec Time | 8 ms |
Memory | 3600 KB |
Judge Result
Set Name | test_01 | test_02 | test_03 | test_04 | test_05 | test_06 | test_07 | test_08 | test_09 | test_10 | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Score / Max Score | 0 / 1343058 | 0 / 1343058 | 0 / 1343058 | 0 / 1343058 | 0 / 1343058 | 0 / 1343058 | 0 / 1343058 | 0 / 1343058 | 0 / 1343058 | 0 / 1343058 | ||||||||||||||||||||
Status |
|
|
|
|
|
|
|
|
|
|
Set Name | Test Cases |
---|---|
test_01 | subtask_01_01.txt |
test_02 | subtask_01_02.txt |
test_03 | subtask_01_03.txt |
test_04 | subtask_01_04.txt |
test_05 | subtask_01_05.txt |
test_06 | subtask_01_06.txt |
test_07 | subtask_01_07.txt |
test_08 | subtask_01_08.txt |
test_09 | subtask_01_09.txt |
test_10 | subtask_01_10.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
subtask_01_01.txt | AC | 8 ms | 3560 KB |
subtask_01_02.txt | AC | 3 ms | 3528 KB |
subtask_01_03.txt | AC | 2 ms | 3516 KB |
subtask_01_04.txt | AC | 2 ms | 3536 KB |
subtask_01_05.txt | AC | 2 ms | 3600 KB |
subtask_01_06.txt | AC | 1 ms | 3568 KB |
subtask_01_07.txt | AC | 2 ms | 3528 KB |
subtask_01_08.txt | AC | 2 ms | 3600 KB |
subtask_01_09.txt | AC | 3 ms | 3484 KB |
subtask_01_10.txt | AC | 1 ms | 3540 KB |