結果

問題 No.538 N.G.S.
ユーザー Shun_PIShun_PI
提出日時 2017-06-30 23:03:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 2,100 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 78,300 KB
実行使用メモリ 50,516 KB
最終ジャッジ日時 2024-09-24 23:55:33
合計ジャッジ時間 6,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,000 KB
testcase_01 AC 55 ms
50,376 KB
testcase_02 AC 55 ms
50,336 KB
testcase_03 AC 54 ms
50,304 KB
testcase_04 AC 55 ms
49,808 KB
testcase_05 AC 54 ms
50,252 KB
testcase_06 AC 55 ms
49,872 KB
testcase_07 AC 54 ms
50,300 KB
testcase_08 AC 55 ms
50,340 KB
testcase_09 AC 55 ms
50,180 KB
testcase_10 AC 54 ms
50,060 KB
testcase_11 AC 55 ms
50,248 KB
testcase_12 AC 55 ms
50,464 KB
testcase_13 AC 55 ms
50,232 KB
testcase_14 AC 54 ms
50,484 KB
testcase_15 AC 54 ms
49,940 KB
testcase_16 AC 56 ms
50,516 KB
testcase_17 AC 55 ms
50,192 KB
testcase_18 AC 56 ms
50,004 KB
testcase_19 AC 56 ms
50,132 KB
testcase_20 AC 57 ms
50,148 KB
testcase_21 AC 55 ms
50,452 KB
testcase_22 AC 55 ms
49,900 KB
testcase_23 AC 55 ms
50,184 KB
testcase_24 AC 55 ms
50,440 KB
testcase_25 AC 56 ms
50,304 KB
testcase_26 AC 58 ms
49,940 KB
testcase_27 AC 55 ms
50,272 KB
testcase_28 AC 55 ms
50,332 KB
testcase_29 AC 55 ms
50,460 KB
testcase_30 AC 55 ms
49,988 KB
testcase_31 AC 55 ms
49,868 KB
testcase_32 AC 54 ms
50,408 KB
testcase_33 AC 55 ms
50,388 KB
testcase_34 AC 55 ms
49,996 KB
testcase_35 AC 54 ms
50,420 KB
testcase_36 AC 55 ms
50,380 KB
testcase_37 AC 55 ms
50,132 KB
testcase_38 AC 54 ms
50,148 KB
testcase_39 AC 54 ms
49,960 KB
testcase_40 AC 54 ms
50,280 KB
testcase_41 AC 55 ms
49,984 KB
testcase_42 AC 54 ms
50,192 KB
testcase_43 AC 58 ms
49,904 KB
testcase_44 AC 54 ms
50,176 KB
testcase_45 AC 55 ms
50,388 KB
testcase_46 AC 56 ms
50,248 KB
testcase_47 AC 55 ms
50,240 KB
testcase_48 AC 55 ms
50,348 KB
testcase_49 AC 55 ms
50,428 KB
testcase_50 AC 54 ms
50,320 KB
testcase_51 AC 53 ms
50,276 KB
testcase_52 AC 54 ms
50,160 KB
testcase_53 AC 54 ms
50,300 KB
testcase_54 AC 54 ms
50,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.NoSuchElementException;
 
public class Main {
	private static FastScanner sc = new FastScanner();
	
	public static void main(String[] args) {
		double b1 = sc.nextDouble();
		double b2 = sc.nextDouble();
		double b3 = sc.nextDouble();
		
		if(b2 == b1) {
			System.out.println(Math.round(b3));
			return;
		}
		
		double r = (b3 - b2) / (b2 - b1);

		System.out.println(Math.round(r * b3 + b2 - r * b1));
	}
	
	static 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() {
            return Long.parseLong(next());
        }
        public int nextInt(){
            return Integer.parseInt(next());
        }
        public double nextDouble(){
            return Double.parseDouble(next());
        }
    }
}
0