結果

問題 No.784 「,(カンマ)」
ユーザー NewbiekunNewbiekun
提出日時 2019-02-20 14:08:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 3,955 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-11-06 19:33:10
合計ジャッジ時間 6,057 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,400 KB
testcase_01 AC 137 ms
54,196 KB
testcase_02 AC 136 ms
54,068 KB
testcase_03 AC 135 ms
53,904 KB
testcase_04 AC 135 ms
54,164 KB
testcase_05 AC 136 ms
53,948 KB
testcase_06 AC 136 ms
54,404 KB
testcase_07 AC 141 ms
54,148 KB
testcase_08 AC 136 ms
54,252 KB
testcase_09 AC 135 ms
54,092 KB
testcase_10 AC 136 ms
54,168 KB
testcase_11 AC 141 ms
54,404 KB
testcase_12 AC 136 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No784 {

	public static void main(String args[])
	{
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();

// "%,d"は3桁毎に","を入れるの意味
		System.out.println(String.format("%,d", n));
	}
}
0