結果

問題 No.883 ぬりえ
ユーザー kuuso1kuuso1
提出日時 2019-09-13 22:41:45
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,822 bytes
コンパイル時間 4,785 ms
コンパイル使用メモリ 107,116 KB
実行使用メモリ 24,912 KB
最終ジャッジ日時 2023-09-17 14:52:52
合計ジャッジ時間 7,180 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 59 ms
20,804 KB
testcase_03 AC 59 ms
20,736 KB
testcase_04 AC 60 ms
20,860 KB
testcase_05 AC 60 ms
20,908 KB
testcase_06 AC 60 ms
20,736 KB
testcase_07 AC 60 ms
20,784 KB
testcase_08 WA -
testcase_09 AC 60 ms
22,924 KB
testcase_10 AC 59 ms
20,844 KB
testcase_11 AC 60 ms
22,840 KB
testcase_12 AC 58 ms
18,796 KB
testcase_13 AC 59 ms
20,884 KB
testcase_14 AC 59 ms
20,872 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 61 ms
22,940 KB
testcase_19 AC 59 ms
20,848 KB
testcase_20 AC 59 ms
20,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		int M1 = N / (K * K + K);
		int rest = N - (K * K + K) * M1;
		
		int M2 = 0;
		while(true){
			if(M2 * M2 >= rest) break;
			M2++;
		}
		
		int M = M1 * (K + 1) + M2;
		char[][] ar = new char[M][];
		for(int i=0;i<M;i++){
			ar[i] = new char[M];
			for(int j=0;j<M;j++) ar[i][j] = '.';
		}
		
		for(int k=0;k<M1;k++){
			for(int i=0;i<K+1;i++){
				for(int j=0;j<K+1;j++){
					ar[K * k + i][K * k + j] = i == j ? '.' : '#';
				}
			}
		}
		if(rest <= K * K){
			for(int i=0;i<M2;i++){
				for(int j=0;j<M2;j++){
					if(rest == 0) break;
					ar[(K + 1) * M1 + i][(K + 1) * M1 + j] = '#';
					rest--;
				}
			}
		} else {
			for(int i=0;i<M2;i++){
				for(int j=0;j<M2;j++){
					if(rest == 0) break;
					if(i == j) continue;
					ar[(K + 1) * M1 + i][(K + 1) * M1 + j] = '#';
					rest--;
				}
			}
		}
		Console.WriteLine(M);
		for(int i=0;i<M;i++) Console.WriteLine(new String(ar[i]));
	}
	int N, K;
	public Sol(){
		var d = ria();
		N = d[0]; K = d[1];
	}

	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0