結果
問題 | No.499 7進数変換 |
ユーザー |
|
提出日時 | 2017-04-07 22:29:20 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 1,000 ms |
コード長 | 389 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-16 00:55:42 |
合計ジャッジ時間 | 2,045 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
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) if res == []: print(0) else: print(''.join(map(str,res))) if __name__ == "__main__": main()