Submission #16534373
Source Code Expand
Copy
import java.util.*; import java.io.*; import java.math.*; public class Main{ static void solve(){//Here is the main function myout("50 26"); for(int i = 1; i <= 25; i++){ myout("2 1 " + (i * 2 - 1) + " " + (i * 2)); } myout("0 5000"); } //Method addition frame start //Method addition frame end //Don't have to see. start------------------------------------------ static class InputIterator{ ArrayList<String> inputLine = new ArrayList<String>(1024); int index = 0; int max; String read; InputIterator(){ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); try{ while((read = br.readLine()) != null){ inputLine.add(read); } }catch(IOException e){} max = inputLine.size(); } boolean hasNext(){return (index < max);} String next(){ if(hasNext()){ return inputLine.get(index++); }else{ throw new IndexOutOfBoundsException("There is no more input"); } } } static HashMap<Integer, String> CONVSTR = new HashMap<Integer, String>(); static InputIterator ii = new InputIterator();//This class cannot be used in reactive problem. static PrintWriter out = new PrintWriter(System.out); static void flush(){out.flush();} static void myout(Object t){out.println(t);} static void myerr(Object t){System.err.print("debug:");System.err.println(t);} static String next(){return ii.next();} static boolean hasNext(){return ii.hasNext();} static int nextInt(){return Integer.parseInt(next());} static long nextLong(){return Long.parseLong(next());} static double nextDouble(){return Double.parseDouble(next());} static ArrayList<String> nextStrArray(){return myconv(next(), 8);} static ArrayList<String> nextCharArray(){return myconv(next(), 0);} static ArrayList<Integer> nextIntArray(){ ArrayList<String> input = nextStrArray(); ArrayList<Integer> ret = new ArrayList<Integer>(input.size()); for(int i = 0; i < input.size(); i++){ ret.add(Integer.parseInt(input.get(i))); } return ret; } static ArrayList<Long> nextLongArray(){ ArrayList<String> input = nextStrArray(); ArrayList<Long> ret = new ArrayList<Long>(input.size()); for(int i = 0; i < input.size(); i++){ ret.add(Long.parseLong(input.get(i))); } return ret; } static String myconv(Object list, int no){//only join String joinString = CONVSTR.get(no); if(list instanceof String[]){ return String.join(joinString, (String[])list); }else if(list instanceof ArrayList){ return String.join(joinString, (ArrayList)list); }else{ throw new ClassCastException("Don't join"); } } static ArrayList<String> myconv(String str, int no){//only split String splitString = CONVSTR.get(no); return new ArrayList<String>(Arrays.asList(str.split(splitString))); } public static void main(String[] args){ CONVSTR.put(8, " "); CONVSTR.put(9, "\n"); CONVSTR.put(0, ""); solve();flush(); } //Don't have to see. end------------------------------------------ }
Submission Info
Submission Time | |
---|---|
Task | A - Problem Setting A |
User | watarimaycry2 |
Language | Java (OpenJDK 11.0.6) |
Score | 0 |
Code Size | 3037 Byte |
Status | AC |
Exec Time | 131 ms |
Memory | 36980 KB |
Compile Error
Note: ./Main.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details.
Judge Result
Set Name | All | ||
---|---|---|---|
Score / Max Score | 0 / 100 | ||
Status |
|
Set Name | Test Cases |
---|---|
All | 00_pretest_00, 00_pretest_01, 00_pretest_02, 00_pretest_03, 00_pretest_04, 00_pretest_05, 00_pretest_06, 00_pretest_07, 00_pretest_08, 00_pretest_09, 00_pretest_10, 00_pretest_11, 00_pretest_12, 00_pretest_13, 00_pretest_14 |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
00_pretest_00 | AC | 126 ms | 36928 KB |
00_pretest_01 | AC | 131 ms | 36864 KB |
00_pretest_02 | AC | 129 ms | 36796 KB |
00_pretest_03 | AC | 122 ms | 36828 KB |
00_pretest_04 | AC | 130 ms | 36760 KB |
00_pretest_05 | AC | 128 ms | 36820 KB |
00_pretest_06 | AC | 123 ms | 36744 KB |
00_pretest_07 | AC | 123 ms | 36936 KB |
00_pretest_08 | AC | 128 ms | 36788 KB |
00_pretest_09 | AC | 119 ms | 36780 KB |
00_pretest_10 | AC | 128 ms | 36980 KB |
00_pretest_11 | AC | 123 ms | 36808 KB |
00_pretest_12 | AC | 123 ms | 36768 KB |
00_pretest_13 | AC | 119 ms | 36880 KB |
00_pretest_14 | AC | 126 ms | 36908 KB |