結果
問題 | No.72 そろばん Med |
ユーザー | watarimaycry2 |
提出日時 | 2020-06-28 18:14:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 76 ms / 5,000 ms |
コード長 | 3,527 bytes |
コンパイル時間 | 2,335 ms |
コンパイル使用メモリ | 86,856 KB |
実行使用メモリ | 51,664 KB |
最終ジャッジ日時 | 2024-07-07 23:19:20 |
合計ジャッジ時間 | 5,265 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 73 ms
51,508 KB |
testcase_01 | AC | 76 ms
51,272 KB |
testcase_02 | AC | 74 ms
51,320 KB |
testcase_03 | AC | 72 ms
51,396 KB |
testcase_04 | AC | 74 ms
51,452 KB |
testcase_05 | AC | 72 ms
51,356 KB |
testcase_06 | AC | 71 ms
50,916 KB |
testcase_07 | AC | 71 ms
51,124 KB |
testcase_08 | AC | 72 ms
51,404 KB |
testcase_09 | AC | 72 ms
51,264 KB |
testcase_10 | AC | 74 ms
51,396 KB |
testcase_11 | AC | 74 ms
51,120 KB |
testcase_12 | AC | 71 ms
51,304 KB |
testcase_13 | AC | 75 ms
51,340 KB |
testcase_14 | AC | 73 ms
51,376 KB |
testcase_15 | AC | 74 ms
51,520 KB |
testcase_16 | AC | 73 ms
51,576 KB |
testcase_17 | AC | 73 ms
51,516 KB |
testcase_18 | AC | 74 ms
51,464 KB |
testcase_19 | AC | 74 ms
51,340 KB |
testcase_20 | AC | 73 ms
51,000 KB |
testcase_21 | AC | 73 ms
51,260 KB |
testcase_22 | AC | 75 ms
51,404 KB |
testcase_23 | AC | 75 ms
51,664 KB |
testcase_24 | AC | 75 ms
51,336 KB |
testcase_25 | AC | 73 ms
51,016 KB |
testcase_26 | AC | 74 ms
51,440 KB |
ソースコード
import java.util.*;import java.io.*;import java.math.*; public class Main{ //↓見なくていいよ!ここから------------------------------------------ static 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(); } boolean hasNext(){return (index < max);} String next(){ if(hasNext()){ String returnStr = inputLine.get(index); index++; return returnStr; }else{ throw new IndexOutOfBoundsException("これ以上入力はないよ"); } } } static InputIterator ii = new InputIterator();//リアクティブでは使えないので諦めてScanner使うこと 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 int nextInt(){return Integer.parseInt(next());} static long nextLong(){return Long.parseLong(next());} static ArrayList<String> nextStrArray(){return myHanSpSplit(next());} static ArrayList<String> myHanSpSplit(String str){return new ArrayList<String>(Arrays.asList(str.split(" ")));} static ArrayList<String> nextCharArray(){return mySingleSplit(next());} static ArrayList<String> mySingleSplit(String str){return new ArrayList<String>(Arrays.asList(str.split("")));} static ArrayList<Integer> nextIntArray(){ ArrayList<Integer> ret = new ArrayList<Integer>(); ArrayList<String> input = nextStrArray(); for(int i = 0; i < input.size(); i++){ ret.add(Integer.parseInt(input.get(i))); } return ret; } static ArrayList<Long> nextLongArray(){ ArrayList<Long> ret = new ArrayList<Long>(); ArrayList<String> input = nextStrArray(); for(int i = 0; i < input.size(); i++){ ret.add(Long.parseLong(input.get(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){ Runtime rt = Runtime.getRuntime(); long mae = System.currentTimeMillis(); solve(); flush(); long ato = System.currentTimeMillis(); myerr("time : " + (ato - mae) + "ms"); myerr("memory : " + ((rt.totalMemory() - rt.getRuntime().freeMemory()) / 1024) + "KB"); } //↑見なくていいよ!ここまで------------------------------------------ static void solve(){//ここがメイン関数代わり BigInteger N = new BigInteger(next()); BigInteger low = N.divide(new BigInteger("2")); BigInteger high = N.add(new BigInteger("1")).divide(new BigInteger("2")); BigInteger mod = new BigInteger("1000007"); BigInteger output = low.add(high.multiply(low.add(new BigInteger("1")))).mod(mod); myout(output.toString()); } //Method addition frame start //Method addition frame end }