結果

問題 No.1893 Cycle
ユーザー sysnote8mainsysnote8main
提出日時 2023-05-07 19:32:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 4,759 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-05-03 16:19:32
合計ジャッジ時間 7,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,240 KB
testcase_01 AC 127 ms
41,236 KB
testcase_02 AC 114 ms
40,220 KB
testcase_03 WA -
testcase_04 AC 122 ms
41,440 KB
testcase_05 WA -
testcase_06 AC 126 ms
41,380 KB
testcase_07 WA -
testcase_08 AC 121 ms
40,824 KB
testcase_09 WA -
testcase_10 AC 113 ms
40,000 KB
testcase_11 AC 114 ms
40,084 KB
testcase_12 AC 110 ms
39,884 KB
testcase_13 AC 125 ms
41,188 KB
testcase_14 AC 114 ms
39,912 KB
testcase_15 AC 111 ms
39,908 KB
testcase_16 AC 119 ms
40,684 KB
testcase_17 WA -
testcase_18 AC 127 ms
41,272 KB
testcase_19 WA -
testcase_20 AC 126 ms
41,320 KB
testcase_21 WA -
testcase_22 AC 112 ms
40,248 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class GetPointOnCircle {
    public static void log(Object obj) {
        System.out.println(obj.toString());
    }
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        if(a>b) {
            int g = b;
            b=a;
            a=g;
        }
        if(4<=a) {
            log(a-4);
        } else {
            log(b+4);
        }
    }
}

0