結果

問題 No.299 蟻本が読めない
ユーザー キョウチクキョウチク
提出日時 2022-06-01 14:02:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 291 bytes
コンパイル時間 2,357 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-09-21 01:29:45
合計ジャッジ時間 3,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,172 KB
testcase_01 AC 128 ms
41,084 KB
testcase_02 AC 124 ms
41,284 KB
testcase_03 AC 143 ms
41,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) throws Exception {
    // Your code here!
    Scanner sc=new Scanner(System.in);
    String line;
    line=sc.nextLine();
    long result=316+52*(Long.parseLong(line)-1);
    System.out.println(result);
  }
}
0