結果
問題 | No.782 マイナス進数 |
ユーザー | tenten |
提出日時 | 2022-10-20 15:28:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 177 ms / 2,000 ms |
コード長 | 1,727 bytes |
コンパイル時間 | 2,055 ms |
コンパイル使用メモリ | 77,760 KB |
実行使用メモリ | 57,304 KB |
最終ジャッジ日時 | 2024-06-30 08:13:48 |
合計ジャッジ時間 | 8,100 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,068 KB |
testcase_01 | AC | 52 ms
49,848 KB |
testcase_02 | AC | 141 ms
52,472 KB |
testcase_03 | AC | 146 ms
54,636 KB |
testcase_04 | AC | 147 ms
54,512 KB |
testcase_05 | AC | 143 ms
54,736 KB |
testcase_06 | AC | 140 ms
52,308 KB |
testcase_07 | AC | 150 ms
54,520 KB |
testcase_08 | AC | 144 ms
54,296 KB |
testcase_09 | AC | 140 ms
52,508 KB |
testcase_10 | AC | 139 ms
52,440 KB |
testcase_11 | AC | 156 ms
54,880 KB |
testcase_12 | AC | 143 ms
54,740 KB |
testcase_13 | AC | 176 ms
57,144 KB |
testcase_14 | AC | 152 ms
54,688 KB |
testcase_15 | AC | 153 ms
54,772 KB |
testcase_16 | AC | 148 ms
54,580 KB |
testcase_17 | AC | 161 ms
54,644 KB |
testcase_18 | AC | 141 ms
54,748 KB |
testcase_19 | AC | 165 ms
54,680 KB |
testcase_20 | AC | 157 ms
54,676 KB |
testcase_21 | AC | 170 ms
54,588 KB |
testcase_22 | AC | 158 ms
54,824 KB |
testcase_23 | AC | 141 ms
54,696 KB |
testcase_24 | AC | 177 ms
57,304 KB |
testcase_25 | AC | 145 ms
54,692 KB |
testcase_26 | AC | 155 ms
54,676 KB |
testcase_27 | AC | 153 ms
54,604 KB |
testcase_28 | AC | 153 ms
54,952 KB |
testcase_29 | AC | 54 ms
50,396 KB |
testcase_30 | AC | 54 ms
50,384 KB |
testcase_31 | AC | 52 ms
50,340 KB |
testcase_32 | AC | 55 ms
49,864 KB |
testcase_33 | AC | 53 ms
50,116 KB |
testcase_34 | AC | 54 ms
50,468 KB |
testcase_35 | AC | 53 ms
50,372 KB |
testcase_36 | AC | 53 ms
50,200 KB |
testcase_37 | AC | 53 ms
50,172 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int base = -sc.nextInt(); StringBuilder sb = new StringBuilder(); while (n-- > 0) { int x = sc.nextInt(); if (x == 0) { sb.append("0\n"); continue; } boolean isPlus = true; StringBuilder tmp = new StringBuilder(); while (x > 0) { if (isPlus) { tmp.append(x % base); } else { tmp.append((base - (x % base)) % base); if (x % base != 0) { x += base; } } x /= base; isPlus ^= true; } sb.append(tmp.reverse()).append("\n"); } System.out.print(sb); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }