結果
問題 | No.333 門松列を数え上げ |
ユーザー | nCk_cv |
提出日時 | 2016-01-20 17:13:14 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 311 bytes |
コンパイル時間 | 2,005 ms |
コンパイル使用メモリ | 76,188 KB |
実行使用メモリ | 41,884 KB |
最終ジャッジ日時 | 2024-09-21 14:50:10 |
合計ジャッジ時間 | 3,844 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
41,156 KB |
testcase_01 | AC | 136 ms
41,168 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 128 ms
41,180 KB |
testcase_08 | AC | 136 ms
41,884 KB |
ソースコード
import java.util.*; import java.math.*; import java.io.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); if(a < b) { System.out.println(a - 1); } else { System.out.println(2000000000 - a); } } }