結果

問題 No.499 7進数変換
ユーザー fjafjafjafjafjafja
提出日時 2017-08-23 02:02:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 301 bytes
コンパイル時間 3,387 ms
コンパイル使用メモリ 73,828 KB
実行使用メモリ 56,388 KB
最終ジャッジ日時 2024-10-15 04:30:37
合計ジャッジ時間 8,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,088 KB
testcase_01 AC 134 ms
41,128 KB
testcase_02 AC 133 ms
41,284 KB
testcase_03 AC 134 ms
41,080 KB
testcase_04 AC 132 ms
40,968 KB
testcase_05 AC 133 ms
41,132 KB
testcase_06 AC 136 ms
41,276 KB
testcase_07 AC 136 ms
40,952 KB
testcase_08 AC 134 ms
41,404 KB
testcase_09 AC 135 ms
41,260 KB
testcase_10 AC 132 ms
41,240 KB
testcase_11 AC 131 ms
41,240 KB
testcase_12 AC 130 ms
40,940 KB
testcase_13 AC 130 ms
41,528 KB
testcase_14 AC 132 ms
40,952 KB
testcase_15 AC 133 ms
41,404 KB
testcase_16 AC 133 ms
40,912 KB
testcase_17 AC 133 ms
41,244 KB
testcase_18 AC 133 ms
41,544 KB
testcase_19 AC 134 ms
41,112 KB
testcase_20 AC 132 ms
41,244 KB
testcase_21 AC 132 ms
41,120 KB
testcase_22 AC 133 ms
41,260 KB
testcase_23 AC 132 ms
41,372 KB
testcase_24 AC 130 ms
41,324 KB
testcase_25 AC 131 ms
40,932 KB
testcase_26 AC 121 ms
39,968 KB
testcase_27 AC 134 ms
40,952 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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)*(int)Math.pow(10, i);
			N/=7;
			i++;
		}while(N>0);
		System.out.println(N7);
	}
}
0