結果

問題 No.499 7進数変換
ユーザー uafr_csuafr_cs
提出日時 2017-04-07 22:21:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 396 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 75,164 KB
実行使用メモリ 56,064 KB
最終ジャッジ日時 2024-07-16 00:42:42
合計ジャッジ時間 6,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Scanner;

public class Main {

	public static final int INF = Integer.MAX_VALUE / 2 - 1;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		System.out.println(Long.toUnsignedString(sc.nextLong(), 7));
	}
}
0