結果

問題 No.299 蟻本が読めない
ユーザー キョウチク
提出日時 2022-06-01 16:22:58
言語 Java
(openjdk 23)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 315 bytes
コンパイル時間 3,539 ms
コンパイル使用メモリ 76,432 KB
実行使用メモリ 55,136 KB
最終ジャッジ日時 2024-09-21 01:39:35
合計ジャッジ時間 4,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other MLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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