結果

問題 No.445 得点
ユーザー yokoshabelyokoshabel
提出日時 2016-12-31 21:46:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 652 bytes
コンパイル時間 4,002 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-05-09 14:37:10
合計ジャッジ時間 7,669 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,028 KB
testcase_01 AC 131 ms
40,848 KB
testcase_02 AC 133 ms
41,176 KB
testcase_03 AC 131 ms
41,240 KB
testcase_04 AC 131 ms
41,156 KB
testcase_05 AC 131 ms
41,200 KB
testcase_06 AC 131 ms
41,204 KB
testcase_07 AC 131 ms
40,920 KB
testcase_08 AC 131 ms
41,224 KB
testcase_09 AC 130 ms
39,980 KB
testcase_10 AC 131 ms
41,392 KB
testcase_11 AC 134 ms
41,336 KB
testcase_12 AC 131 ms
41,436 KB
testcase_13 AC 129 ms
41,500 KB
testcase_14 AC 118 ms
40,112 KB
testcase_15 AC 134 ms
41,092 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 132 ms
40,940 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){
		double df=0;
		int n5=50*n;
		df=n5+Math.floor(n5/(0.8+0.2*k));
		int f=(int)df;
		return f;
	}
}
0