結果
問題 | No.333 門松列を数え上げ |
ユーザー | Grenache |
提出日時 | 2016-02-11 16:18:45 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 1,676 bytes |
コンパイル時間 | 3,249 ms |
コンパイル使用メモリ | 78,704 KB |
実行使用メモリ | 37,352 KB |
最終ジャッジ日時 | 2024-09-22 00:34:11 |
合計ジャッジ時間 | 4,272 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
36,944 KB |
testcase_01 | AC | 50 ms
36,944 KB |
testcase_02 | AC | 50 ms
37,272 KB |
testcase_03 | AC | 51 ms
37,352 KB |
testcase_04 | AC | 53 ms
37,024 KB |
testcase_05 | AC | 51 ms
37,272 KB |
testcase_06 | AC | 51 ms
37,352 KB |
testcase_07 | AC | 52 ms
37,220 KB |
testcase_08 | AC | 51 ms
37,004 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.Iterator; public class Main_yukicoder333 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int n = 2000000000; int a = sc.nextInt(); int b = sc.nextInt(); if (a > b) { pr.println(n - b - 1); } else { pr.println(b - 2); } pr.close(); sc.close(); } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator<String> it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }