結果

問題 No.499 7進数変換
ユーザー fumofumofunifumofumofuni
提出日時 2022-06-27 20:39:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 576 ms / 1,000 ms
コード長 60 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 79,952 KB
最終ジャッジ日時 2024-04-30 02:17:20
合計ジャッジ時間 18,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 576 ms
44,028 KB
testcase_01 AC 498 ms
44,156 KB
testcase_02 AC 505 ms
44,156 KB
testcase_03 AC 504 ms
44,136 KB
testcase_04 AC 504 ms
43,640 KB
testcase_05 AC 500 ms
43,752 KB
testcase_06 AC 514 ms
43,752 KB
testcase_07 AC 515 ms
44,140 KB
testcase_08 AC 523 ms
44,284 KB
testcase_09 AC 520 ms
44,164 KB
testcase_10 AC 515 ms
43,900 KB
testcase_11 AC 515 ms
44,268 KB
testcase_12 AC 515 ms
44,140 KB
testcase_13 AC 503 ms
44,016 KB
testcase_14 AC 493 ms
43,892 KB
testcase_15 AC 502 ms
43,884 KB
testcase_16 AC 504 ms
43,768 KB
testcase_17 AC 499 ms
44,396 KB
testcase_18 AC 503 ms
44,136 KB
testcase_19 AC 495 ms
43,924 KB
testcase_20 AC 498 ms
44,004 KB
testcase_21 AC 488 ms
44,140 KB
testcase_22 AC 487 ms
43,892 KB
testcase_23 AC 488 ms
44,016 KB
testcase_24 AC 492 ms
44,008 KB
testcase_25 AC 514 ms
43,900 KB
testcase_26 AC 512 ms
44,140 KB
testcase_27 AC 502 ms
43,884 KB
testcase_28 AC 488 ms
43,896 KB
testcase_29 AC 492 ms
44,160 KB
testcase_30 AC 490 ms
79,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np 
N=int(input())
print(np.base_repr(N, 7))
0