結果

問題 No.809 かけ算
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-04-12 21:49:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 72,456 KB
実行使用メモリ 57,748 KB
最終ジャッジ日時 2023-10-12 19:44:31
合計ジャッジ時間 4,084 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
55,804 KB
testcase_01 AC 138 ms
55,456 KB
testcase_02 AC 137 ms
55,860 KB
testcase_03 AC 142 ms
55,632 KB
testcase_04 AC 137 ms
57,748 KB
testcase_05 AC 138 ms
55,780 KB
testcase_06 AC 137 ms
55,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int c = sc.nextInt();
        System.out.println(1 +" "+ c);
    }
}
0