結果
問題 | No.942 プレゼント配り |
ユーザー | hirokazu1020 |
提出日時 | 2019-12-06 01:15:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,154 bytes |
コンパイル時間 | 709 ms |
コンパイル使用メモリ | 95,060 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 09:01:53 |
合計ジャッジ時間 | 3,871 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 15 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 15 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 12 ms
5,376 KB |
testcase_09 | AC | 13 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 11 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<sstream> #include<cstdio> #include<cstdlib> #include<cstring> #include<climits> #include<cmath> #include<string> #include<vector> #include<set> #include<map> #include<queue> #include<numeric> #include<functional> #include<algorithm> #include<bitset> #include<tuple> #include<unordered_set> #include<unordered_map> #include<random> #include<array> #include<cassert> using namespace std; #define INF (1<<29) #define rep(i,n) for(int i=0;i<(int)(n);i++) #define all(v) v.begin(),v.end() #define uniq(v) v.erase(unique(all(v)),v.end()) int main() { ios::sync_with_stdio(0); cin.tie(0); int n, k; cin >> n >> k; int m = n / k; if (m % 2 == 0) { cout << "Yes" << endl; rep(i, k) { rep(j, m / 2) { if (j)cout << ' '; cout << i * m / 2 + j + 1; } rep(j,m/2) { cout << ' '; cout << n - i * m / 2 - j; } cout << endl; } } else if (k % (n / m) == 0) { cout << "Yes" << endl; rep(i, k) { rep(j, m) { if (j)cout << ' '; cout << j * n / m + (i + j) % (n / m) + 1; } cout << endl; } } else { cout << "No" << endl; } return 0; }