結果

問題 No.445 得点
ユーザー yokoshabelyokoshabel
提出日時 2016-12-31 22:09:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 75,324 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-06-29 22:11:57
合計ジャッジ時間 6,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,680 KB
testcase_01 AC 101 ms
52,592 KB
testcase_02 AC 109 ms
54,320 KB
testcase_03 AC 115 ms
53,648 KB
testcase_04 AC 115 ms
54,184 KB
testcase_05 AC 102 ms
52,588 KB
testcase_06 AC 111 ms
53,876 KB
testcase_07 AC 96 ms
52,592 KB
testcase_08 AC 107 ms
53,600 KB
testcase_09 AC 113 ms
53,788 KB
testcase_10 AC 108 ms
54,004 KB
testcase_11 AC 115 ms
54,004 KB
testcase_12 AC 99 ms
52,900 KB
testcase_13 AC 111 ms
53,936 KB
testcase_14 AC 102 ms
52,508 KB
testcase_15 AC 108 ms
54,080 KB
testcase_16 AC 106 ms
53,732 KB
testcase_17 AC 103 ms
53,244 KB
testcase_18 AC 112 ms
53,888 KB
testcase_19 AC 113 ms
53,896 KB
testcase_20 AC 100 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.out;
import java.util.Scanner;

public class No445{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String sA=sc.next();
		String sB=sc.next();
		int n=toI(sA,6);
		int k=toI(sB,1000);
		int f=calc(n,k);
		if(f==0){out.println("error");}
		else{out.println(f);}
		sc.close();
	}
	
	private static int toI(String a,int max){
		try{
			int i=Integer.parseInt(a);
			if(i<=max){return i;}else{return 0;}
		}catch(NumberFormatException e){return 0;}
	}
	
	private static int calc(int n,int k){
		int f=50*n+(int)Math.floor(500*n/(8+2*k));
		return f;
	}
}
0