結果
問題 | No.112 ややこしい鶴亀算 |
ユーザー | k_kadora |
提出日時 | 2015-05-25 23:40:46 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 728 bytes |
コンパイル時間 | 3,540 ms |
コンパイル使用メモリ | 79,536 KB |
実行使用メモリ | 60,800 KB |
最終ジャッジ日時 | 2024-07-06 08:30:26 |
合計ジャッジ時間 | 10,754 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
55,088 KB |
testcase_01 | AC | 120 ms
47,228 KB |
testcase_02 | AC | 120 ms
42,476 KB |
testcase_03 | AC | 126 ms
42,044 KB |
testcase_04 | AC | 124 ms
42,156 KB |
testcase_05 | AC | 131 ms
42,124 KB |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
import java.util.*; public class Tsurukame { public static void main(String[] arg){ Scanner sc = new Scanner(System.in); int n,tsuru,kame,sum,temp,flag; n = sc.nextInt(); int[] leg = new int[n]; for(int i = 0;i<n;i++){ leg[i] = sc.nextInt(); } sum = leg[0]; kame = (sum - 2*(n-1))/2; tsuru = n - kame -1; if( kame == n-1 || tsuru == n - 1){ if ( leg[0] - leg[1] == 0){ if(kame>0){ kame++; }else{ tsuru++; } }else{ if(kame>0){ tsuru++; }else{ kame++; } } }else{ int j = 0; while(j<n){ if(leg[j] != leg[j+1])break; } if(leg[j] - leg[j+1] == 2){ kame++; }else{ tsuru++; } } System.out.println(tsuru+" "+kame); } }