結果

問題 No.299 蟻本が読めない
ユーザー キョウチクキョウチク
提出日時 2022-06-01 16:20:00
言語 Java21
(openjdk 21)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 343 bytes
コンパイル時間 4,216 ms
コンパイル使用メモリ 76,420 KB
実行使用メモリ 58,416 KB
最終ジャッジ日時 2023-10-21 00:55:14
合計ジャッジ時間 5,118 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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