結果

問題 No.499 7進数変換
ユーザー 0w10w1
提出日時 2017-04-09 19:31:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 154 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 53,492 KB
最終ジャッジ日時 2024-07-18 01:36:30
合計ジャッジ時間 2,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
52,284 KB
testcase_02 AC 33 ms
53,252 KB
testcase_03 AC 34 ms
53,316 KB
testcase_04 AC 32 ms
52,436 KB
testcase_05 AC 32 ms
52,744 KB
testcase_06 AC 32 ms
52,644 KB
testcase_07 AC 32 ms
52,932 KB
testcase_08 AC 33 ms
52,220 KB
testcase_09 AC 34 ms
52,764 KB
testcase_10 AC 35 ms
52,572 KB
testcase_11 AC 36 ms
52,848 KB
testcase_12 AC 35 ms
53,492 KB
testcase_13 AC 39 ms
52,744 KB
testcase_14 AC 33 ms
53,188 KB
testcase_15 AC 36 ms
53,196 KB
testcase_16 AC 33 ms
52,780 KB
testcase_17 AC 32 ms
52,536 KB
testcase_18 AC 34 ms
52,896 KB
testcase_19 AC 35 ms
52,144 KB
testcase_20 AC 34 ms
52,656 KB
testcase_21 AC 33 ms
52,596 KB
testcase_22 AC 34 ms
52,824 KB
testcase_23 AC 34 ms
52,464 KB
testcase_24 AC 33 ms
52,760 KB
testcase_25 AC 35 ms
52,052 KB
testcase_26 AC 34 ms
52,628 KB
testcase_27 AC 33 ms
52,880 KB
testcase_28 AC 34 ms
53,084 KB
testcase_29 AC 34 ms
52,752 KB
testcase_30 AC 33 ms
52,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int( input() )
ans = ""
while N:
  ans += chr( ord( '0' ) + N % 7 )
  N //= 7
for i in range( len( ans ) - 1, -1, -1 ):
  print( ans[ i ], end = "" )
0