結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,108 KB
testcase_01 AC 131 ms
41,116 KB
testcase_02 AC 125 ms
40,872 KB
testcase_03 WA -
testcase_04 AC 125 ms
41,244 KB
testcase_05 WA -
testcase_06 AC 122 ms
40,876 KB
testcase_07 WA -
testcase_08 AC 127 ms
40,936 KB
testcase_09 WA -
testcase_10 AC 128 ms
41,260 KB
testcase_11 AC 132 ms
41,240 KB
testcase_12 AC 128 ms
41,404 KB
testcase_13 AC 128 ms
41,344 KB
testcase_14 AC 131 ms
41,100 KB
testcase_15 AC 130 ms
41,132 KB
testcase_16 AC 128 ms
41,060 KB
testcase_17 WA -
testcase_18 AC 127 ms
41,384 KB
testcase_19 WA -
testcase_20 AC 127 ms
41,276 KB
testcase_21 WA -
testcase_22 AC 121 ms
39,868 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