結果

問題 No.784 「,(カンマ)」
ユーザー YamaKasa
提出日時 2019-02-10 20:23:45
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

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