結果

問題 No.784 「,(カンマ)」
ユーザー YamaKasaYamaKasa
提出日時 2019-02-10 20:23:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 1,714 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 54,024 KB
最終ジャッジ日時 2024-07-07 04:31:29
合計ジャッジ時間 3,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
54,004 KB
testcase_01 AC 98 ms
52,868 KB
testcase_02 AC 94 ms
52,540 KB
testcase_03 AC 106 ms
53,916 KB
testcase_04 AC 107 ms
53,980 KB
testcase_05 AC 109 ms
53,916 KB
testcase_06 AC 103 ms
52,984 KB
testcase_07 AC 109 ms
53,732 KB
testcase_08 AC 110 ms
54,020 KB
testcase_09 AC 107 ms
53,676 KB
testcase_10 AC 101 ms
52,804 KB
testcase_11 AC 107 ms
54,024 KB
testcase_12 AC 112 ms
53,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		sc.close();
		System.out.println(String.format("%,d", N));
	}
}
0