結果

問題 No.809 かけ算
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-04-12 21:49:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 76,156 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-09-14 18:06:55
合計ジャッジ時間 4,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,820 KB
testcase_01 AC 144 ms
41,284 KB
testcase_02 AC 143 ms
41,400 KB
testcase_03 AC 142 ms
41,704 KB
testcase_04 AC 146 ms
41,484 KB
testcase_05 AC 146 ms
41,420 KB
testcase_06 AC 144 ms
41,552 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