結果
問題 | No.333 門松列を数え上げ |
ユーザー | OGNM |
提出日時 | 2016-12-26 15:16:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 136 ms / 2,000 ms |
コード長 | 577 bytes |
コンパイル時間 | 3,649 ms |
コンパイル使用メモリ | 77,624 KB |
実行使用メモリ | 41,836 KB |
最終ジャッジ日時 | 2024-05-08 18:01:27 |
合計ジャッジ時間 | 5,671 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
41,432 KB |
testcase_01 | AC | 127 ms
41,376 KB |
testcase_02 | AC | 136 ms
41,352 KB |
testcase_03 | AC | 133 ms
41,300 KB |
testcase_04 | AC | 132 ms
41,664 KB |
testcase_05 | AC | 131 ms
41,468 KB |
testcase_06 | AC | 131 ms
41,608 KB |
testcase_07 | AC | 129 ms
41,540 KB |
testcase_08 | AC | 130 ms
41,836 KB |
ソースコード
package yukicoder; import java.util.Scanner; public class Study { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = 0; int d = 0; if(a>b){ c = 2000000000-a - 1; d = 2000000000-b - 1; if(c > d){ System.out.println(c); }else if(c < d){ System.out.println(d); } }else if(a < b){ c = b - a - 1; d = a-1; System.out.println(c + d); } } }