結果

問題 No.809 かけ算
ユーザー GodNegotoGodNegoto
提出日時 2019-11-08 15:25:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 3,473 ms
コンパイル使用メモリ 72,248 KB
実行使用メモリ 56,192 KB
最終ジャッジ日時 2023-10-13 03:12:18
合計ジャッジ時間 5,458 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
55,940 KB
testcase_01 AC 139 ms
56,076 KB
testcase_02 AC 141 ms
55,920 KB
testcase_03 AC 140 ms
55,772 KB
testcase_04 AC 139 ms
55,832 KB
testcase_05 AC 141 ms
56,192 KB
testcase_06 AC 139 ms
56,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.Scanner;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int C = sc.nextInt();
		int B = C / 1;
		int A = C / B;
		System.out.print(B + " ");
		System.out.println(A);
		
	}
}
0