結果

問題 No.499 7進数変換
ユーザー fumofumofunifumofumofuni
提出日時 2022-06-27 20:39:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 986 ms / 1,000 ms
コード長 60 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 10,532 KB
実行使用メモリ 48,492 KB
最終ジャッジ日時 2023-08-12 12:22:21
合計ジャッジ時間 7,925 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 986 ms
29,420 KB
testcase_01 AC 116 ms
29,452 KB
testcase_02 AC 113 ms
29,604 KB
testcase_03 AC 115 ms
29,504 KB
testcase_04 AC 110 ms
29,520 KB
testcase_05 AC 108 ms
29,532 KB
testcase_06 AC 110 ms
29,592 KB
testcase_07 AC 113 ms
29,560 KB
testcase_08 AC 108 ms
29,432 KB
testcase_09 AC 107 ms
29,456 KB
testcase_10 AC 111 ms
29,524 KB
testcase_11 AC 111 ms
29,444 KB
testcase_12 AC 114 ms
29,544 KB
testcase_13 AC 120 ms
29,476 KB
testcase_14 AC 112 ms
29,564 KB
testcase_15 AC 111 ms
29,576 KB
testcase_16 AC 109 ms
29,468 KB
testcase_17 AC 111 ms
29,536 KB
testcase_18 AC 109 ms
29,492 KB
testcase_19 AC 112 ms
29,532 KB
testcase_20 AC 108 ms
29,564 KB
testcase_21 AC 109 ms
29,508 KB
testcase_22 AC 123 ms
29,484 KB
testcase_23 AC 118 ms
29,536 KB
testcase_24 AC 113 ms
29,544 KB
testcase_25 AC 112 ms
29,408 KB
testcase_26 AC 110 ms
29,636 KB
testcase_27 AC 117 ms
29,476 KB
testcase_28 AC 110 ms
29,588 KB
testcase_29 AC 112 ms
29,512 KB
testcase_30 AC 110 ms
48,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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