結果

問題 No.499 7進数変換
ユーザー fumofumofunifumofumofuni
提出日時 2022-06-27 20:38:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 25 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 10,696 KB
実行使用メモリ 8,036 KB
最終ジャッジ日時 2023-08-12 12:20:52
合計ジャッジ時間 2,180 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,856 KB
testcase_01 AC 17 ms
7,864 KB
testcase_02 AC 17 ms
7,912 KB
testcase_03 AC 17 ms
7,852 KB
testcase_04 AC 16 ms
7,852 KB
testcase_05 AC 16 ms
7,956 KB
testcase_06 AC 16 ms
7,964 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 WA -
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 RE -
testcase_24 WA -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
print(int(N,7))
0