結果
問題 | No.199 星を描こう |
ユーザー | kou6839 |
提出日時 | 2015-04-30 22:36:43 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 135 ms / 2,000 ms |
コード長 | 1,877 bytes |
コンパイル時間 | 2,512 ms |
コンパイル使用メモリ | 79,308 KB |
実行使用メモリ | 54,264 KB |
最終ジャッジ日時 | 2024-06-09 13:50:39 |
合計ジャッジ時間 | 5,930 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
54,056 KB |
testcase_01 | AC | 118 ms
54,264 KB |
testcase_02 | AC | 103 ms
53,064 KB |
testcase_03 | AC | 122 ms
54,008 KB |
testcase_04 | AC | 114 ms
53,880 KB |
testcase_05 | AC | 113 ms
53,892 KB |
testcase_06 | AC | 126 ms
54,016 KB |
testcase_07 | AC | 98 ms
52,228 KB |
testcase_08 | AC | 113 ms
53,796 KB |
testcase_09 | AC | 112 ms
54,044 KB |
testcase_10 | AC | 115 ms
54,156 KB |
testcase_11 | AC | 107 ms
52,568 KB |
testcase_12 | AC | 98 ms
52,512 KB |
testcase_13 | AC | 117 ms
54,052 KB |
testcase_14 | AC | 103 ms
52,752 KB |
testcase_15 | AC | 103 ms
52,712 KB |
testcase_16 | AC | 107 ms
52,912 KB |
testcase_17 | AC | 135 ms
53,976 KB |
testcase_18 | AC | 116 ms
54,156 KB |
testcase_19 | AC | 112 ms
53,676 KB |
testcase_20 | AC | 112 ms
54,092 KB |
testcase_21 | AC | 115 ms
54,044 KB |
testcase_22 | AC | 112 ms
53,960 KB |
testcase_23 | AC | 112 ms
54,104 KB |
testcase_24 | AC | 110 ms
53,688 KB |
testcase_25 | AC | 117 ms
53,832 KB |
testcase_26 | AC | 100 ms
52,892 KB |
testcase_27 | AC | 99 ms
52,692 KB |
ソースコード
import java.util.ArrayList; import java.util.Scanner; public class Main { static boolean cul(int[] x,int []y, ArrayList<Integer> use,ArrayList<Integer> not){ int one = (x[use.get(1)]-x[use.get(0)])*(y[not.get(0)]-y[use.get(0)])-(y[use.get(1)]-y[use.get(0)])*(x[not.get(0)]-x[use.get(0)]); int two = (x[use.get(2)]-x[use.get(1)])*(y[not.get(0)]-y[use.get(1)])-(y[use.get(2)]-y[use.get(1)])*(x[not.get(0)]-x[use.get(1)]); int three=(x[use.get(0)]-x[use.get(2)])*(y[not.get(0)]-y[use.get(2)])-(y[use.get(0)]-y[use.get(2)])*(x[not.get(0)]-x[use.get(2)]); if((one>0 && two >0 && three >0 )||(one<0 && two <0 && three <0) || one==0 || two ==0 || three==0){ return false; }else{ } one = (x[use.get(1)]-x[use.get(0)])*(y[not.get(1)]-y[use.get(0)])-(y[use.get(1)]-y[use.get(0)])*(x[not.get(1)]-x[use.get(0)]); two = (x[use.get(2)]-x[use.get(1)])*(y[not.get(1)]-y[use.get(1)])-(y[use.get(2)]-y[use.get(1)])*(x[not.get(1)]-x[use.get(1)]); three=(x[use.get(0)]-x[use.get(2)])*(y[not.get(1)]-y[use.get(2)])-(y[use.get(0)]-y[use.get(2)])*(x[not.get(1)]-x[use.get(2)]); if((one>0 && two >0 && three >0 )||(one<0 && two <0 && three <0) || one==0 || two ==0 || three==0){ return false; }else{ } return true; } public static void main(String[] args){ // TODO 自動生成されたメソッド・スタブ Scanner sc = new Scanner(System.in); int[] x = new int[5]; int[] y = new int[5]; for(int i=0;i<5;i++){ x[i]=sc.nextInt(); y[i]=sc.nextInt(); } for(int i=0; i< (1<<5);i++){ if(Integer.bitCount(i)!=3) continue; ArrayList<Integer> use = new ArrayList<>(); ArrayList<Integer> not = new ArrayList<>(); for(int j=0;j<5;j++){ if((i >> j &1) >0){ use.add(j); }else{ not.add(j); } } if(!cul(x, y, use, not)){ System.out.println("NO"); return; } } System.out.println("YES"); } }