結果
| 問題 | No.782 マイナス進数 |
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-02-03 21:43:53 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 305 bytes |
| 記録 | |
| コンパイル時間 | 503 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-07 14:29:30 |
| 合計ジャッジ時間 | 7,065 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 27 WA * 9 |
ソースコード
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
T,B,*nums = map(int,read().split())
for n in nums:
rep = []
while n:
r = n % (-B)
n = (n - r) // B
rep.append(r)
print(''.join(map(str,reversed(rep))))
maspy