結果

問題 No.782 マイナス進数
ユーザー tailstails
提出日時 2019-01-22 16:49:42
言語 Bash
(Bash 5.1.16)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 94 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-15 13:34:59
合計ジャッジ時間 25,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 432 ms
5,376 KB
testcase_03 AC 559 ms
5,376 KB
testcase_04 AC 657 ms
5,376 KB
testcase_05 AC 476 ms
5,376 KB
testcase_06 AC 433 ms
5,376 KB
testcase_07 AC 955 ms
5,376 KB
testcase_08 AC 527 ms
5,376 KB
testcase_09 AC 423 ms
5,376 KB
testcase_10 AC 440 ms
5,376 KB
testcase_11 AC 930 ms
5,376 KB
testcase_12 AC 806 ms
5,376 KB
testcase_13 TLE -
testcase_14 AC 799 ms
5,376 KB
testcase_15 AC 929 ms
5,376 KB
testcase_16 AC 809 ms
5,376 KB
testcase_17 AC 1,428 ms
5,376 KB
testcase_18 AC 806 ms
5,376 KB
testcase_19 AC 1,168 ms
5,376 KB
testcase_20 AC 805 ms
5,376 KB
testcase_21 AC 1,307 ms
5,376 KB
testcase_22 AC 888 ms
5,376 KB
testcase_23 AC 692 ms
5,376 KB
testcase_24 AC 1,972 ms
6,948 KB
testcase_25 AC 793 ms
5,376 KB
testcase_26 AC 1,067 ms
5,376 KB
testcase_27 AC 941 ms
5,376 KB
testcase_28 AC 793 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 6 ms
5,376 KB
testcase_32 AC 12 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read t b
while read n r;do
	for((;d=(n%-b-b)%-b,n;n=(n-d)/b)){
		r=$d$r
	}
	echo ${r:-0}
done
0