結果
問題 | No.883 ぬりえ |
ユーザー | 沙耶花 |
提出日時 | 2019-09-13 21:32:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 614 bytes |
コンパイル時間 | 1,500 ms |
コンパイル使用メモリ | 171,004 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-04 03:59:55 |
合計ジャッジ時間 | 4,494 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:24:22: warning: 'M' may be used uninitialized [-Wmaybe-uninitialized] 24 | for(int i=0;i<M;i++){ | ~^~ main.cpp:12:13: note: 'M' was declared here 12 | int M; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 100000000 int main(){ int N,K; cin>>N>>K; int M; for(int i=1;i<=10000;i++){ if((i/K)*K*K + (i%K)*(i%K) >= N){ M = i; break; } } vector<vector<char>> ans(M,vector<char>(M,'.')); int cnt = 0; for(int i=0;i<M;i++){ for(int j=0;j<K;j++){ int a = (i/K)*K + j; if(a>=M)continue; if(cnt>=N)continue; ans[i][a] = '#'; cnt++; } } for(int i=0;i<M;i++){ for(int j=0;j<M;j++){ cout<<ans[i][j]; } cout<<endl; } return 0; }