Submission #620891


Source Code Expand

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc=new Scanner(System.in);
		int m=sc.nextInt();
		double n=m/1000.0;
		int buf;
		String VV=null;
		
		if(n<0.1){
			VV="00";
		}else if(n>=0.1 && n<=5.0){
			buf=new Double(n*10.0).intValue();
			VV=new Integer(buf).toString();

			if(buf>=1 && buf<=9){
				VV="0"+VV;
			}
		}else if(n>=6.0 && n<=30.0){
			buf=new Double(n+50.0).intValue();
			VV=new Integer(buf).toString();
		}else if(n>=35.0 && n<=70.0){
			buf=new Double((n-30.0)/5.0+80.0).intValue();
			VV=new Integer(buf).toString();
			
		}else if(n>70.0){
			VV="89";
		}
		
		System.out.println(VV);
	}

}

Submission Info

Submission Time
Task B - 視程の通報
User tak5656tak
Language Java (OpenJDK 1.7.0)
Score 100
Code Size 763 Byte
Status AC
Exec Time 440 ms
Memory 23380 KB

Judge Result

Set Name all
Score / Max Score 100 / 100
Status
AC × 38
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 440 ms 23212 KB
00_sample_02.txt AC 382 ms 23284 KB
00_sample_03.txt AC 385 ms 23180 KB
test_01.txt AC 376 ms 23204 KB
test_02.txt AC 405 ms 23196 KB
test_03.txt AC 391 ms 23220 KB
test_04.txt AC 384 ms 23180 KB
test_05.txt AC 377 ms 23220 KB
test_06.txt AC 372 ms 23244 KB
test_07.txt AC 372 ms 23260 KB
test_08.txt AC 371 ms 23264 KB
test_09.txt AC 381 ms 23252 KB
test_10.txt AC 378 ms 23256 KB
test_11.txt AC 377 ms 23272 KB
test_12.txt AC 391 ms 23224 KB
test_13.txt AC 371 ms 23256 KB
test_14.txt AC 376 ms 23284 KB
test_15.txt AC 368 ms 23228 KB
test_16.txt AC 364 ms 23268 KB
test_17.txt AC 367 ms 23240 KB
test_18.txt AC 370 ms 23228 KB
test_19.txt AC 365 ms 23280 KB
test_20.txt AC 367 ms 23264 KB
test_21.txt AC 361 ms 23272 KB
test_22.txt AC 359 ms 23264 KB
test_23.txt AC 359 ms 23152 KB
test_24.txt AC 362 ms 23216 KB
test_25.txt AC 357 ms 23216 KB
test_26.txt AC 361 ms 23380 KB
test_27.txt AC 361 ms 23220 KB
test_28.txt AC 367 ms 23228 KB
test_29.txt AC 370 ms 23236 KB
test_30.txt AC 373 ms 23220 KB
test_31.txt AC 373 ms 23276 KB
test_32.txt AC 373 ms 23220 KB
test_33.txt AC 368 ms 23316 KB
test_34.txt AC 381 ms 23284 KB
test_35.txt AC 370 ms 23296 KB