結果

問題 No.499 7進数変換
ユーザー YamaKasa
提出日時 2018-05-25 02:15:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 222 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-06-28 17:51:00
合計ジャッジ時間 6,255 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		scan.close();
		System.out.println(Integer.toString(n, 7));
	}
}
0