結果

問題 No.1236 長針と短針
ユーザー 遭難者遭難者
提出日時 2020-08-08 13:48:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-10-01 15:03:49
合計ジャッジ時間 6,142 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,240 KB
testcase_01 AC 130 ms
41,372 KB
testcase_02 AC 127 ms
40,880 KB
testcase_03 AC 133 ms
41,448 KB
testcase_04 AC 130 ms
41,080 KB
testcase_05 AC 129 ms
41,152 KB
testcase_06 AC 129 ms
41,312 KB
testcase_07 AC 118 ms
41,100 KB
testcase_08 AC 115 ms
40,944 KB
testcase_09 AC 108 ms
40,172 KB
testcase_10 AC 133 ms
41,052 KB
testcase_11 AC 134 ms
41,576 KB
testcase_12 AC 136 ms
41,092 KB
testcase_13 AC 138 ms
41,724 KB
testcase_14 AC 136 ms
41,620 KB
testcase_15 AC 138 ms
41,344 KB
testcase_16 AC 136 ms
41,200 KB
testcase_17 AC 119 ms
40,936 KB
testcase_18 AC 116 ms
41,128 KB
testcase_19 AC 105 ms
39,796 KB
testcase_20 AC 114 ms
40,920 KB
testcase_21 AC 106 ms
40,172 KB
testcase_22 AC 116 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
        public static void main(String[] args){
                Scanner sc = new Scanner(System.in);
                int a = sc.nextInt() % 12;
                int b = sc.nextInt();
                sc.close();
                double tyo = b * 6.0;
                double tan = (60 * a + b) / 2.0;
                double sa = tan - tyo;
                if(sa < 0) sa += 360;
                System.out.println((int)(sa / 5.5 * 60));
        }
}
0