結果
| 問題 |
No.126 2基のエレベータ
|
| コンテスト | |
| ユーザー |
kou6839
|
| 提出日時 | 2015-02-24 19:21:23 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 406 bytes |
| コンパイル時間 | 2,062 ms |
| コンパイル使用メモリ | 74,108 KB |
| 実行使用メモリ | 54,544 KB |
| 最終ジャッジ日時 | 2024-06-23 23:04:05 |
| 合計ジャッジ時間 | 7,156 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 WA * 2 |
ソースコード
import java.math.*;
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
if(Math.abs(a-c)<=Math.abs(b-c)||c==1){
System.out.println(Math.abs(a-c)+Math.abs(c));
}else{
System.out.println(Math.min(Math.abs(b-c)+(c-1)+a, Math.abs(b-c)+Math.abs(a-c)+a));
}
}
}
kou6839