結果
| 問題 | No.499 7進数変換 |
| コンテスト | |
| ユーザー |
fukusei
|
| 提出日時 | 2017-05-10 17:14:17 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 131 ms / 1,000 ms |
| コード長 | 274 bytes |
| コンパイル時間 | 3,299 ms |
| コンパイル使用メモリ | 74,292 KB |
| 実行使用メモリ | 41,532 KB |
| 最終ジャッジ日時 | 2024-09-15 07:10:16 |
| 合計ジャッジ時間 | 8,381 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
ソースコード
import java.util.*;
public class test {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
int n = 7;
String base7 = Integer.toString(num, n);
System.out.println(base7);
}
}
fukusei