結果

問題 No.299 蟻本が読めない
ユーザー marumaru
提出日時 2016-03-20 20:35:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 251 bytes
コンパイル時間 3,061 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-10-01 12:07:39
合計ジャッジ時間 4,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,988 KB
testcase_01 AC 131 ms
40,912 KB
testcase_02 AC 132 ms
41,188 KB
testcase_03 AC 132 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_299 {
	public static void main(String[] args) {
	
		Scanner scanner = new Scanner(System.in);
		
		long n = scanner.nextLong();
		
		long page= 316L + 52 * (n - 1); 
		
		System.out.println(page);
	}
}
0