Submission #748274
Source Code Expand
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
double p = sc.nextDouble();
System.out.println(calcTime(p));
sc.close();
}
static double calcX(double p){
return (Math.log(p*Math.log(2)/1.5) * 1.5)/Math.log(2);
}
static double calcTime(double p){
double x = calcX(p);
if(x < 0 ) return p;
else return x + p * Math.pow(2, -x/1.5);
}
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - ムーアの法則 |
| User | tiechel |
| Language | Java8 (OpenJDK 1.8.0) |
| Score | 100 |
| Code Size | 452 Byte |
| Status | AC |
| Exec Time | 223 ms |
| Memory | 11092 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | sample_01.txt, sample_02.txt, sample_03.txt |
| All | 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 01.txt | AC | 209 ms | 11080 KiB |
| 02.txt | AC | 211 ms | 11088 KiB |
| 03.txt | AC | 223 ms | 11088 KiB |
| 04.txt | AC | 211 ms | 10960 KiB |
| 05.txt | AC | 212 ms | 10964 KiB |
| 06.txt | AC | 204 ms | 11084 KiB |
| 07.txt | AC | 208 ms | 11092 KiB |
| 08.txt | AC | 218 ms | 11088 KiB |
| 09.txt | AC | 201 ms | 11092 KiB |
| 10.txt | AC | 203 ms | 11028 KiB |
| 11.txt | AC | 216 ms | 10960 KiB |
| 12.txt | AC | 210 ms | 11088 KiB |
| 13.txt | AC | 212 ms | 11088 KiB |
| 14.txt | AC | 204 ms | 11092 KiB |
| 15.txt | AC | 204 ms | 11092 KiB |
| 16.txt | AC | 204 ms | 10964 KiB |
| 17.txt | AC | 209 ms | 10960 KiB |
| 18.txt | AC | 220 ms | 11024 KiB |
| 19.txt | AC | 203 ms | 11092 KiB |
| 20.txt | AC | 204 ms | 10964 KiB |
| 21.txt | AC | 204 ms | 11088 KiB |
| 22.txt | AC | 212 ms | 10964 KiB |
| 23.txt | AC | 204 ms | 10964 KiB |
| 24.txt | AC | 204 ms | 11088 KiB |
| 25.txt | AC | 201 ms | 10960 KiB |
| sample_01.txt | AC | 210 ms | 10964 KiB |
| sample_02.txt | AC | 204 ms | 10960 KiB |
| sample_03.txt | AC | 204 ms | 10964 KiB |