Advertisement
JKattackk

Day4B

Feb 6th, 2020
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.54 KB | None | 0 0
  1. package com.company;
  2. public class MainB {
  3.  
  4.     public static void main(String[] args)
  5.     {
  6.         int min = 272091;
  7.         int max = 815432;
  8.         int[] tempCode = new int[6];
  9.         int count = 0;
  10.         for(int y = min; y < max; y ++)
  11.         {
  12.             for(int x = 0; x < 6;x++)
  13.             {
  14.                 tempCode[x] = Integer.toString(y).charAt(x);
  15.             }
  16.             boolean pass = false;
  17.             for (int i = 0; i < 5; i++)
  18.             {
  19.                 if(tempCode[i] == tempCode[i+1])
  20.                 {
  21.                     if(i == 0)
  22.                     {
  23.                         if(tempCode[i+2] != tempCode[i])
  24.                         {
  25.                             pass = true;
  26.                         }
  27.                     } else if(i == 4)
  28.                     {
  29.                         if (tempCode[i - 1] != tempCode[i])
  30.                         {
  31.                             pass = true;
  32.                         }
  33.                     }else
  34.                     {
  35.                         if(tempCode[i-1] != tempCode[i] && tempCode[i+2] != tempCode[i])
  36.                         {
  37.                             pass =  true;
  38.                         }
  39.                     }
  40.                 }
  41.             }
  42.             for (int i = 1; i < 6; i++) {
  43.                 if (tempCode[i] < tempCode[i - 1]) {
  44.                     pass = false;
  45.                 }
  46.             }
  47.             if (pass) {
  48.                 count++;
  49.             }
  50.         }
  51.         System.out.println(count);
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement