結果

問題 No.499 7進数変換
ユーザー losiz17losiz17
提出日時 2017-04-21 16:25:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 1,000 ms
コード長 268 bytes
コンパイル時間 2,999 ms
コンパイル使用メモリ 72,140 KB
実行使用メモリ 56,616 KB
最終ジャッジ日時 2023-09-27 10:54:29
合計ジャッジ時間 7,864 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
56,032 KB
testcase_01 AC 105 ms
55,968 KB
testcase_02 AC 107 ms
55,776 KB
testcase_03 AC 110 ms
55,640 KB
testcase_04 AC 108 ms
56,276 KB
testcase_05 AC 109 ms
55,880 KB
testcase_06 AC 106 ms
56,136 KB
testcase_07 AC 108 ms
55,632 KB
testcase_08 AC 106 ms
56,180 KB
testcase_09 AC 109 ms
55,648 KB
testcase_10 AC 108 ms
56,088 KB
testcase_11 AC 108 ms
55,920 KB
testcase_12 AC 111 ms
55,900 KB
testcase_13 AC 106 ms
56,004 KB
testcase_14 AC 106 ms
55,684 KB
testcase_15 AC 107 ms
55,680 KB
testcase_16 AC 107 ms
55,656 KB
testcase_17 AC 108 ms
56,332 KB
testcase_18 AC 107 ms
55,424 KB
testcase_19 AC 110 ms
53,616 KB
testcase_20 AC 104 ms
55,784 KB
testcase_21 AC 103 ms
56,616 KB
testcase_22 AC 107 ms
55,608 KB
testcase_23 AC 104 ms
56,348 KB
testcase_24 AC 107 ms
55,972 KB
testcase_25 AC 109 ms
56,064 KB
testcase_26 AC 107 ms
56,080 KB
testcase_27 AC 107 ms
55,688 KB
testcase_28 AC 107 ms
56,080 KB
testcase_29 AC 108 ms
55,568 KB
testcase_30 AC 111 ms
56,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class henkan7 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		Scanner sc = new Scanner (System.in);
		
		
		Long N = Long.parseLong(sc.next());
		
		System.out.println(Long.toString(N,7));

	}

}
0