結果
問題 | No.333 門松列を数え上げ |
ユーザー | mitsuo |
提出日時 | 2016-05-04 13:39:34 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 509 bytes |
コンパイル時間 | 1,925 ms |
コンパイル使用メモリ | 75,064 KB |
実行使用メモリ | 54,100 KB |
最終ジャッジ日時 | 2024-10-05 06:25:28 |
合計ジャッジ時間 | 3,795 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
53,732 KB |
testcase_01 | AC | 117 ms
53,872 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 116 ms
53,792 KB |
testcase_05 | AC | 117 ms
53,908 KB |
testcase_06 | AC | 117 ms
54,100 KB |
testcase_07 | AC | 112 ms
53,856 KB |
testcase_08 | AC | 113 ms
53,888 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] input = new String[1]; int i = 0; while (sc.hasNext()) { input[i] = sc.nextLine(); i++; } System.out.println(solve(input)); sc.close(); } public static long solve(String[] in) { long a = Long.valueOf(in[0].split(" ")[0]); long b = Long.valueOf(in[0].split(" ")[1]); if(a < b){ return a - 1; }else{ return 2000000000 - b - 1; } } }