結果

問題 No.809 かけ算
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 10:41:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 3,724 ms
コンパイル使用メモリ 75,880 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-11-20 16:09:45
合計ジャッジ時間 4,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

package con_level_1;
import java.util.Scanner;
public class Con809 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int C = s.nextInt();
		s.close();

		System.out.println("1 " + C);

	}

}
0