Submission #763165
Source Code Expand
import java.io.IOException;
import java.io.InputStream;
import java.util.NoSuchElementException;
public class Main {
FastScanner fs = new FastScanner();
public static void main(String[] args) {
new Main().solve();
}
void solve() {
double X = 0.0;
X = (double)fs.nextLong();
X = Math.sqrt(X);
X = Math.sqrt(X);
System.out.println((int)X);
}
}
class FastScanner {
private final InputStream in = System.in;
private final byte[] buffer = new byte[1024];
private int ptr = 0;
private int buflen = 0;
private boolean hasNextByte() {
if (ptr < buflen) {
return true;
} else {
ptr = 0;
try {
buflen = in.read(buffer);
} catch (IOException e) {
e.printStackTrace();
}
if (buflen <= 0) {
return false;
}
}
return true;
}
private int readByte() {
if (hasNextByte()) return buffer[ptr++];
else return -1;
}
private static boolean isPrintableChar(int c) {
return 33 <= c && c <= 126;
}
private void skipUnprintable() {
while (hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;
}
public boolean hasNext() {
skipUnprintable();
return hasNextByte();
}
public String next() {
if (!hasNext()) throw new NoSuchElementException();
StringBuilder sb = new StringBuilder();
int b = readByte();
while (isPrintableChar(b)) {
sb.appendCodePoint(b);
b = readByte();
}
return sb.toString();
}
public long nextLong() {
if (!hasNext()) throw new NoSuchElementException();
long n = 0;
boolean minus = false;
int b = readByte();
if (b == '-') {
minus = true;
b = readByte();
}
if (b < '0' || '9' < b) {
throw new NumberFormatException();
}
while (true) {
if ('0' <= b && b <= '9') {
n *= 10;
n += b - '0';
} else if (b == -1 || !isPrintableChar(b)) {
return minus ? -n : n;
} else {
throw new NumberFormatException();
}
b = readByte();
}
}
public int nextInt() {
if (!hasNext()) throw new NoSuchElementException();
int n = 0;
boolean minus = false;
int b = readByte();
if (b == '-') {
minus = true;
b = readByte();
}
if (b < '0' || '9' < b) {
throw new NumberFormatException();
}
while (true) {
if ('0' <= b && b <= '9') {
n *= 10;
n += b - '0';
} else if (b == -1 || !isPrintableChar(b)) {
return minus ? -n : n;
} else {
throw new NumberFormatException();
}
b = readByte();
}
}
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - エージェント高橋君 |
| User | moomin |
| Language | Java8 (OpenJDK 1.8.0) |
| Score | 100 |
| Code Size | 3200 Byte |
| Status | AC |
| Exec Time | 158 ms |
| Memory | 7892 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | example_0.txt, example_1.txt, example_2.txt |
| All | example_0.txt, example_1.txt, example_2.txt, random_0.txt, random_1.txt, random_2.txt, random_3.txt, random_4.txt, random_5.txt, random_6.txt, random_7.txt, random_8.txt, random_9.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| example_0.txt | AC | 152 ms | 7760 KiB |
| example_1.txt | AC | 148 ms | 7892 KiB |
| example_2.txt | AC | 152 ms | 7892 KiB |
| random_0.txt | AC | 156 ms | 7764 KiB |
| random_1.txt | AC | 152 ms | 7764 KiB |
| random_2.txt | AC | 156 ms | 7888 KiB |
| random_3.txt | AC | 152 ms | 7764 KiB |
| random_4.txt | AC | 145 ms | 7760 KiB |
| random_5.txt | AC | 148 ms | 7892 KiB |
| random_6.txt | AC | 149 ms | 7764 KiB |
| random_7.txt | AC | 153 ms | 7892 KiB |
| random_8.txt | AC | 158 ms | 7764 KiB |
| random_9.txt | AC | 156 ms | 7892 KiB |