結果
| 問題 | No.3649 Top View of Jenga |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-28 21:28:14 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 568µs | |
| コード長 | 793 bytes |
| 記録 | |
| コンパイル時間 | 2,177 ms |
| コンパイル使用メモリ | 336,072 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-28 21:28:36 |
| 合計ジャッジ時間 | 3,468 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 20 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T> istream& operator >> (istream& is, vector<T>& vec) {
for(T& x : vec) is >> x;
return is;
}
template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
if(vec.empty()) return os;
os << vec[0];
for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
return os;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
ll n, h;
cin >> n;
h = n / 3;
vector<vector<ll>> ans(3, vector<ll>(3, h));
ll r = n - h * 3;
if(h % 2 == 0){
for(int y = 0; y < 3; y++){
for(int x = 0; x < r; x++){
ans[y][x]++;
}
}
}else{
for(int y = 0; y < r; y++){
for(int x = 0; x < 3; x++){
ans[y][x]++;
}
}
}
for(int y = 0; y < 3; y++) cout << ans[y] << '\n';
}