結果
問題 | No.942 プレゼント配り |
ユーザー | tnakao0123 |
提出日時 | 2019-12-05 15:19:00 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,060 bytes |
コンパイル時間 | 740 ms |
コンパイル使用メモリ | 88,596 KB |
実行使用メモリ | 9,240 KB |
最終ジャッジ日時 | 2024-07-19 16:26:04 |
合計ジャッジ時間 | 4,330 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | AC | 5 ms
8,292 KB |
testcase_03 | AC | 4 ms
8,200 KB |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | AC | 5 ms
8,064 KB |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 4 ms
8,064 KB |
testcase_11 | AC | 5 ms
8,236 KB |
testcase_12 | AC | 5 ms
8,112 KB |
testcase_13 | AC | 5 ms
8,012 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 5 ms
8,240 KB |
testcase_19 | AC | 5 ms
8,136 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:45:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 45 | scanf("%d%d", &n, &k); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*- * * 942.cc: No.942 プレゼント配り - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 200000; /* typedef */ typedef vector<int> vi; /* global variables */ vi ds[MAX_N]; /* subroutines */ /* main */ int main() { int n, k; scanf("%d%d", &n, &k); int m = n / k; if (m & 1) { puts("No"); return 0; } for (int i = 0, d = 1; i < m; i++) { if (! (i & 1)) for (int j = 0; j < k; j++) ds[j].push_back(d++); else for (int j = k - 1; j >= 0; j--) ds[j].push_back(d++); } puts("yes"); for (int i = 0; i < m; i++) { for (int j = 0; j < k; j++) { if (j) putchar(' '); printf("%d", ds[i][j]); } putchar('\n'); } return 0; }