結果
問題 | No.333 門松列を数え上げ |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-05-03 08:54:48 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 51 ms / 2,000 ms |
コード長 | 599 bytes |
コンパイル時間 | 2,124 ms |
コンパイル使用メモリ | 74,600 KB |
実行使用メモリ | 37,260 KB |
最終ジャッジ日時 | 2024-09-14 07:00:27 |
合計ジャッジ時間 | 2,934 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
36,688 KB |
testcase_01 | AC | 50 ms
36,592 KB |
testcase_02 | AC | 49 ms
36,860 KB |
testcase_03 | AC | 50 ms
36,888 KB |
testcase_04 | AC | 50 ms
36,672 KB |
testcase_05 | AC | 51 ms
36,704 KB |
testcase_06 | AC | 50 ms
37,260 KB |
testcase_07 | AC | 51 ms
37,028 KB |
testcase_08 | AC | 50 ms
36,908 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String[] inputs = reader.readLine().split(" "); int A = Integer.parseInt(inputs[0]); int B = Integer.parseInt(inputs[1]); if(A<B) { System.out.println((A-1) + (B-A-1)); } else { System.out.println( (2000000000-A) + (A-B-1)); } } }