結果
問題 |
No.782 マイナス進数
|
ユーザー |
![]() |
提出日時 | 2021-11-02 18:03:35 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,712 bytes |
コンパイル時間 | 2,301 ms |
コンパイル使用メモリ | 77,468 KB |
実行使用メモリ | 56,760 KB |
最終ジャッジ日時 | 2024-10-11 22:53:16 |
合計ジャッジ時間 | 9,368 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 27 WA * 9 |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int t = sc.nextInt(); int b = -sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < t; i++) { int x = sc.nextInt(); boolean isPlus = true; StringBuilder tmp = new StringBuilder(); while (x > 0) { if (isPlus) { tmp.append(x % b); x /= b; } else { int mod = x % b; if (mod == 0) { tmp.append("0"); x /= b; } else { tmp.append(b - mod); x /= b; x++; } } 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(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }