結果

問題 No.784 「,(カンマ)」
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-09 11:38:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 3,838 ms
コンパイル使用メモリ 71,968 KB
実行使用メモリ 56,272 KB
最終ジャッジ日時 2023-09-14 11:06:14
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
55,916 KB
testcase_01 AC 124 ms
55,500 KB
testcase_02 AC 124 ms
55,740 KB
testcase_03 AC 123 ms
56,272 KB
testcase_04 AC 126 ms
55,652 KB
testcase_05 AC 126 ms
55,820 KB
testcase_06 AC 127 ms
55,708 KB
testcase_07 AC 123 ms
56,180 KB
testcase_08 AC 127 ms
55,576 KB
testcase_09 AC 126 ms
55,856 KB
testcase_10 AC 123 ms
55,808 KB
testcase_11 AC 123 ms
55,768 KB
testcase_12 AC 126 ms
55,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        System.out.printf("%1$,3d%n", stdin.nextInt());
    }
}
0