結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
51,752 KB
testcase_02 AC 37 ms
52,936 KB
testcase_03 AC 38 ms
52,812 KB
testcase_04 AC 38 ms
53,136 KB
testcase_05 AC 39 ms
52,748 KB
testcase_06 AC 38 ms
52,980 KB
testcase_07 AC 37 ms
52,052 KB
testcase_08 AC 38 ms
52,320 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
52,268 KB
testcase_11 AC 37 ms
52,460 KB
testcase_12 AC 37 ms
53,560 KB
testcase_13 AC 38 ms
52,600 KB
testcase_14 AC 37 ms
52,788 KB
testcase_15 AC 38 ms
51,880 KB
testcase_16 AC 38 ms
52,584 KB
testcase_17 AC 38 ms
52,112 KB
testcase_18 AC 38 ms
52,316 KB
testcase_19 AC 37 ms
52,280 KB
testcase_20 AC 38 ms
52,372 KB
testcase_21 AC 37 ms
53,852 KB
testcase_22 AC 37 ms
53,124 KB
testcase_23 AC 37 ms
52,408 KB
testcase_24 AC 37 ms
52,644 KB
testcase_25 AC 37 ms
52,864 KB
testcase_26 AC 39 ms
52,556 KB
testcase_27 AC 38 ms
53,476 KB
testcase_28 AC 38 ms
51,940 KB
testcase_29 AC 37 ms
52,264 KB
testcase_30 AC 37 ms
52,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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