結果

問題 No.1472 作為の和
ユーザー ks2mks2m
提出日時 2021-04-09 22:20:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 2,993 ms
コンパイル使用メモリ 76,084 KB
実行使用メモリ 38,116 KB
最終ジャッジ日時 2024-06-25 05:55:35
合計ジャッジ時間 3,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,852 KB
testcase_01 AC 75 ms
38,116 KB
testcase_02 AC 67 ms
38,000 KB
testcase_03 AC 68 ms
37,548 KB
testcase_04 AC 62 ms
37,548 KB
testcase_05 AC 64 ms
37,912 KB
testcase_06 AC 58 ms
37,808 KB
testcase_07 AC 59 ms
37,544 KB
testcase_08 AC 61 ms
37,920 KB
testcase_09 AC 64 ms
37,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		br.close();

		if (n == 0) {
			System.out.println("9 1");
		} else {
			int ans = 18 * n + 8;
			System.out.println(ans + " 1");
		}
	}
}
0