結果

問題 No.299 蟻本が読めない
ユーザー syusyu
提出日時 2020-08-26 22:15:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 327 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 73,656 KB
実行使用メモリ 41,292 KB
最終ジャッジ日時 2024-11-07 14:17:21
合計ジャッジ時間 3,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,016 KB
testcase_01 AC 122 ms
40,904 KB
testcase_02 AC 127 ms
40,996 KB
testcase_03 AC 128 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int page=316;
        int plusPage=52;
        
        long edition=sc.nextLong();
        
        long totalPage=316+52*(edition-1);
        
        System.out.println(totalPage);
    }
}
0