結果

問題 No.784 「,(カンマ)」
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-09 11:38:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 2,418 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-07-01 18:36:40
合計ジャッジ時間 4,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,116 KB
testcase_01 AC 123 ms
40,156 KB
testcase_02 AC 129 ms
41,088 KB
testcase_03 AC 130 ms
41,180 KB
testcase_04 AC 130 ms
40,968 KB
testcase_05 AC 131 ms
41,312 KB
testcase_06 AC 120 ms
40,148 KB
testcase_07 AC 131 ms
40,908 KB
testcase_08 AC 121 ms
40,260 KB
testcase_09 AC 133 ms
40,984 KB
testcase_10 AC 131 ms
41,088 KB
testcase_11 AC 131 ms
41,068 KB
testcase_12 AC 131 ms
41,320 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