結果

問題 No.809 かけ算
ユーザー GrenacheGrenache
提出日時 2019-04-26 14:52:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 3,563 ms
コンパイル使用メモリ 75,004 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-05-03 12:02:45
合計ジャッジ時間 5,361 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,076 KB
testcase_01 AC 135 ms
54,320 KB
testcase_02 AC 136 ms
54,012 KB
testcase_03 AC 138 ms
54,296 KB
testcase_04 AC 141 ms
54,376 KB
testcase_05 AC 137 ms
53,916 KB
testcase_06 AC 140 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder809 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int c = sc.nextInt();

		pr.printf("1 %d%n", c);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0