結果

問題 No.782 マイナス進数
ユーザー kuuso1kuuso1
提出日時 2019-01-11 22:08:58
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,678 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 114,184 KB
実行使用メモリ 32,528 KB
最終ジャッジ日時 2024-05-07 14:09:05
合計ジャッジ時間 4,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
26,224 KB
testcase_01 AC 24 ms
22,192 KB
testcase_02 AC 62 ms
30,364 KB
testcase_03 AC 64 ms
28,316 KB
testcase_04 AC 66 ms
30,240 KB
testcase_05 AC 63 ms
28,448 KB
testcase_06 AC 64 ms
28,212 KB
testcase_07 AC 71 ms
30,224 KB
testcase_08 AC 66 ms
30,108 KB
testcase_09 AC 65 ms
26,268 KB
testcase_10 AC 63 ms
28,080 KB
testcase_11 AC 70 ms
32,528 KB
testcase_12 AC 68 ms
30,492 KB
testcase_13 AC 83 ms
28,792 KB
testcase_14 AC 68 ms
28,196 KB
testcase_15 AC 71 ms
30,240 KB
testcase_16 AC 70 ms
30,492 KB
testcase_17 AC 77 ms
28,400 KB
testcase_18 AC 71 ms
30,628 KB
testcase_19 AC 73 ms
28,196 KB
testcase_20 AC 70 ms
28,188 KB
testcase_21 AC 74 ms
30,296 KB
testcase_22 AC 72 ms
30,240 KB
testcase_23 AC 66 ms
28,060 KB
testcase_24 AC 84 ms
30,708 KB
testcase_25 AC 67 ms
30,108 KB
testcase_26 AC 70 ms
30,484 KB
testcase_27 AC 73 ms
28,320 KB
testcase_28 AC 72 ms
30,244 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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(){
		
		var sb = new StringBuilder();
		foreach(var n in Ns){
			if(n == 0){
				sb.Append(0);
				continue;
			}
			int[] d = new int[60];
			long v = n;
			for(int i=0;i<60;i++){
				d[i] = (int)(v % B);
				v /= B;
			}
			for(int i=0;i<59;i++){
				if(i % 2 == 0){
					if(d[i] < B) continue;
					d[i + 1] += d[i] / B;
					d[i] %= B;
				} else {
					d[i + 1] += d[i] / B;
					d[i] %= B;
					if(d[i] > 0){
						d[i + 1] += 1;
						d[i] = B - d[i];
					}
				}
			}
			var l = new List<int>();
			for(int i=0;i<60;i++) l.Add(d[i]);
			while(l[l.Count - 1] == 0) l.RemoveAt(l.Count - 1);
			l.Reverse();
			sb.AppendLine(String.Join("",l));
		}
		
		Console.Write(sb.ToString());
	}
	int T, B;
	long[] Ns;
	public Sol(){
		var d = ria();
		T = d[0]; B = -d[1];
		Ns = new long[T];
		for(int i=0;i<T;i++) Ns[i] = rl();
	}

	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