結果
問題 | No.333 門松列を数え上げ |
ユーザー | shinwisteria |
提出日時 | 2018-03-14 19:59:43 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 304 bytes |
コンパイル時間 | 3,464 ms |
コンパイル使用メモリ | 74,652 KB |
実行使用メモリ | 54,428 KB |
最終ジャッジ日時 | 2024-11-29 00:31:49 |
合計ジャッジ時間 | 5,482 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
41,132 KB |
testcase_01 | AC | 133 ms
42,908 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 138 ms
42,936 KB |
testcase_08 | AC | 135 ms
42,832 KB |
ソースコード
package m.shin; import java.util.Scanner; public class Con339 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int a = s.nextInt() , b = s.nextInt(); s.close(); int d; if(a < b){ d = a - 1; }else{ d = 2000000000 - a; } System.out.println(d); } }