結果

問題 No.499 7進数変換
ユーザー fjafjafjafjafjafja
提出日時 2017-08-23 02:06:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 303 bytes
コンパイル時間 2,904 ms
コンパイル使用メモリ 73,652 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-10-15 04:30:58
合計ジャッジ時間 7,566 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,928 KB
testcase_01 AC 119 ms
41,192 KB
testcase_02 AC 116 ms
40,704 KB
testcase_03 AC 114 ms
41,108 KB
testcase_04 AC 120 ms
41,196 KB
testcase_05 AC 123 ms
41,212 KB
testcase_06 AC 120 ms
41,104 KB
testcase_07 AC 117 ms
41,148 KB
testcase_08 AC 121 ms
41,108 KB
testcase_09 AC 123 ms
40,964 KB
testcase_10 AC 120 ms
41,040 KB
testcase_11 AC 126 ms
41,032 KB
testcase_12 AC 123 ms
41,268 KB
testcase_13 AC 119 ms
40,792 KB
testcase_14 AC 123 ms
41,092 KB
testcase_15 AC 111 ms
39,676 KB
testcase_16 AC 127 ms
41,328 KB
testcase_17 AC 122 ms
41,048 KB
testcase_18 AC 113 ms
39,900 KB
testcase_19 AC 120 ms
41,000 KB
testcase_20 AC 116 ms
41,072 KB
testcase_21 AC 107 ms
40,176 KB
testcase_22 AC 116 ms
41,104 KB
testcase_23 AC 121 ms
40,840 KB
testcase_24 AC 118 ms
41,020 KB
testcase_25 AC 124 ms
40,660 KB
testcase_26 AC 118 ms
41,284 KB
testcase_27 AC 120 ms
41,276 KB
testcase_28 AC 107 ms
40,144 KB
testcase_29 AC 106 ms
40,112 KB
testcase_30 AC 120 ms
41,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N499
{
	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		long N=sc.nextLong();
		long N7=0;
		int i=0;
		do
		{
			N7+=(N%7)*(long)Math.pow(10, i);
			N/=7;
			i++;
		}while(N>0);
		System.out.println(N7);
	}
}
0