結果

問題 No.499 7進数変換
ユーザー rlangevinrlangevin
提出日時 2024-05-24 08:55:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 104 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-12-20 19:15:24
合計ジャッジ時間 2,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
53,736 KB
testcase_02 AC 39 ms
53,112 KB
testcase_03 AC 40 ms
52,004 KB
testcase_04 AC 41 ms
52,696 KB
testcase_05 AC 40 ms
53,356 KB
testcase_06 AC 41 ms
52,428 KB
testcase_07 AC 39 ms
52,828 KB
testcase_08 AC 40 ms
52,552 KB
testcase_09 AC 40 ms
52,648 KB
testcase_10 AC 41 ms
53,632 KB
testcase_11 AC 39 ms
53,252 KB
testcase_12 AC 41 ms
52,432 KB
testcase_13 AC 40 ms
52,312 KB
testcase_14 AC 40 ms
52,016 KB
testcase_15 AC 40 ms
51,960 KB
testcase_16 AC 41 ms
52,176 KB
testcase_17 AC 41 ms
52,824 KB
testcase_18 AC 40 ms
52,240 KB
testcase_19 AC 40 ms
53,292 KB
testcase_20 AC 40 ms
53,172 KB
testcase_21 AC 41 ms
51,816 KB
testcase_22 AC 40 ms
52,252 KB
testcase_23 AC 39 ms
53,252 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 40 ms
53,164 KB
testcase_26 AC 38 ms
52,516 KB
testcase_27 AC 41 ms
52,976 KB
testcase_28 AC 40 ms
51,816 KB
testcase_29 AC 40 ms
52,332 KB
testcase_30 AC 41 ms
52,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = []
while N:
    ans.append(N%7)
    N //= 7
ans.reverse()
print(*ans, sep="")    
0