結果

問題 No.499 7進数変換
ユーザー kjnho
提出日時 2017-04-07 22:28:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-16 00:54:25
合計ジャッジ時間 1,982 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())

    starting = False
    res = []
    for i in range(12):
        tmp = 7**(11-i)
        if N >= tmp:
            starting = True
            res.append(N//tmp)
            N = N%tmp
        elif starting:
            res.append(0)
    print(''.join(map(str,res)))


if __name__ == "__main__":
    main()
0