Submission #725800
Source Code Expand
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.Arrays;
import java.util.ArrayList;
class Main{
public Main(){}
public void run(){
try{
Scanner s = new Scanner();
int a = s.nextInt();
int b = s.nextInt();
int c = s.nextInt();
int yasui = a;
if(a > b){
yasui = b;
}
int count = 0;
while(true){
c -= yasui;
if(c < 0){
break;
}else{
count++;
}
}
System.out.println(count);
}catch(Exception e){
e.printStackTrace();
}
}
public static void main(String[] argv){
Main main = new Main();
main.run();
}
private class Scanner{
private int p;
private BufferedReader br;
String regex = " ";
String[] token;
public Scanner(){
br = new BufferedReader(new InputStreamReader(System.in));
p = -1;
token = new String[0];
}
void setRegex(String str){
this.regex = str;
}
void reset(){
p = -1;
token = new String[0];
}
String next() throws IOException{
if(p < 0){
String line = br.readLine();
while("".equals(line))line = br.readLine();
token = line.split(regex,0);
p = 0;
return token[p++];
}else{
if(p<token.length)return token[p++];
p = -1;
return null;
}
}
int nextInt() throws NumberFormatException, IOException{
return Integer.parseInt(next());
}
long nextLong() throws NumberFormatException, IOException{
return Long.parseLong(next());
}
double nextDouble() throws NumberFormatException, IOException{
return Double.parseDouble(next());
}
String nextString() throws NumberFormatException, IOException{
return next();
}
}
}
Submission Info
| Submission Time | |
|---|---|
| Task | A - 饅頭 |
| User | shopon1201 |
| Language | Java8 (OpenJDK 1.8.0) |
| Score | 100 |
| Code Size | 1814 Byte |
| Status | AC |
| Exec Time | 167 ms |
| Memory | 7892 KiB |
Judge Result
| Set Name | sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| sample | sample01.txt, sample02.txt |
| All | 00.txt, 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, 26.txt, 27.txt, 28.txt, 29.txt, sample01.txt, sample02.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 00.txt | AC | 164 ms | 7892 KiB |
| 01.txt | AC | 167 ms | 7892 KiB |
| 02.txt | AC | 159 ms | 7888 KiB |
| 03.txt | AC | 163 ms | 7888 KiB |
| 04.txt | AC | 159 ms | 7892 KiB |
| 05.txt | AC | 161 ms | 7888 KiB |
| 06.txt | AC | 162 ms | 7892 KiB |
| 07.txt | AC | 160 ms | 7892 KiB |
| 08.txt | AC | 163 ms | 7892 KiB |
| 09.txt | AC | 163 ms | 7892 KiB |
| 10.txt | AC | 163 ms | 7892 KiB |
| 11.txt | AC | 163 ms | 7764 KiB |
| 12.txt | AC | 163 ms | 7892 KiB |
| 13.txt | AC | 163 ms | 7892 KiB |
| 14.txt | AC | 163 ms | 7888 KiB |
| 15.txt | AC | 163 ms | 7892 KiB |
| 16.txt | AC | 164 ms | 7892 KiB |
| 17.txt | AC | 163 ms | 7892 KiB |
| 18.txt | AC | 163 ms | 7892 KiB |
| 19.txt | AC | 159 ms | 7892 KiB |
| 20.txt | AC | 163 ms | 7888 KiB |
| 21.txt | AC | 163 ms | 7892 KiB |
| 22.txt | AC | 163 ms | 7892 KiB |
| 23.txt | AC | 163 ms | 7892 KiB |
| 24.txt | AC | 163 ms | 7892 KiB |
| 25.txt | AC | 163 ms | 7892 KiB |
| 26.txt | AC | 163 ms | 7892 KiB |
| 27.txt | AC | 163 ms | 7892 KiB |
| 28.txt | AC | 161 ms | 7764 KiB |
| 29.txt | AC | 159 ms | 7888 KiB |
| sample01.txt | AC | 167 ms | 7892 KiB |
| sample02.txt | AC | 163 ms | 7892 KiB |