結果
問題 | No.442 和と積 |
ユーザー | watarimaycry2 |
提出日時 | 2020-05-18 22:12:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,704 bytes |
コンパイル時間 | 2,628 ms |
コンパイル使用メモリ | 78,392 KB |
実行使用メモリ | 52,452 KB |
最終ジャッジ日時 | 2024-10-01 22:07:39 |
合計ジャッジ時間 | 4,282 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 55 ms
50,232 KB |
testcase_02 | AC | 56 ms
50,300 KB |
testcase_03 | AC | 56 ms
50,420 KB |
testcase_04 | WA | - |
testcase_05 | AC | 55 ms
50,412 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 57 ms
50,568 KB |
testcase_10 | WA | - |
testcase_11 | AC | 56 ms
50,544 KB |
testcase_12 | AC | 55 ms
50,228 KB |
testcase_13 | AC | 54 ms
50,504 KB |
testcase_14 | AC | 54 ms
50,192 KB |
testcase_15 | AC | 56 ms
50,320 KB |
testcase_16 | AC | 54 ms
50,540 KB |
testcase_17 | AC | 56 ms
50,400 KB |
testcase_18 | WA | - |
testcase_19 | AC | 54 ms
50,524 KB |
testcase_20 | AC | 55 ms
50,436 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { static public class InputIterator{ ArrayList<String> inputLine = new ArrayList<String>(1024); int index = 0; int max; InputIterator(){ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); while(true){ String read; try{ read = br.readLine(); }catch(IOException e){ read = null; } if(read != null){ inputLine.add(read); }else{ break; } } max = inputLine.size(); } public boolean hasNext(){return (index < max);} public String next(){ if(hasNext()){ String returnStr = inputLine.get(index); index++; return returnStr; }else{ throw new IndexOutOfBoundsException("これ以上入力はないよ。"); } } } static InputIterator ii = new InputIterator(); static void myout(Object t){System.out.println(t);} static void myerr(Object t){System.err.println(t);} static String next(){return ii.next();} static int nextInt(){return Integer.parseInt(next());} static long nextLong(){return Long.parseLong(next());} static String[] nextStrArray(){return myHanSpSplit(next());} static String[] nextCharArray(){return mySingleSplit(next());} static String[] mySingleSplit(String str){return str.split("");} static String[] myHanSpSplit(String str){return str.split(" ");} static ArrayList<Integer> nextIntArray(){ ArrayList<Integer> ret = new ArrayList<Integer>(); String[] input = nextStrArray(); for(int i = 0; i < input.length; i++){ ret.add(Integer.parseInt(input[i])); } return ret; } static ArrayList<Long> nextLongArray(){ ArrayList<Long> ret = new ArrayList<Long>(); String[] input = nextStrArray(); for(int i = 0; i < input.length; i++){ ret.add(Long.parseLong(input[i])); } return ret; } static String kaigyoToStr(String[] list){return String.join("\n",list);} static String kaigyoToStr(ArrayList<String> list){return String.join("\n",list);} static String hanSpToStr(String[] list){return String.join(" ",list);} static String hanSpToStr(ArrayList<String> list){return String.join(" ",list);} public static void main(String[] args){ ArrayList<Long> one = nextLongArray(); long A = one.get(0); long B = one.get(1); long mae = gcd(A + B, A); long ato = gcd(A + B, B); myerr(mae); myerr(ato); long output = gcd(mae, ato); myout(Math.min(mae, ato)); } //Method addition frame start public static long gcd(long m, long n) {return n != 0 ? gcd(n, m % n) : m;} //Method addition frame end }