Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- /**
- * 01 Test 1
- * Entrée
- * Sortie attendue
- * ***#***
- * 3
- *
- * 02 Test 2
- * Entrée
- * Sortie attendue
- * **#**********
- * 2
- *
- * 03 Test 3
- * Entrée
- * Sortie attendue
- * ****#*
- * 1
- *
- * 04 Test 4
- * Entrée
- * Sortie attendue
- * #*****
- * 0
- *
- * 05 Test 5
- * Entrée
- * Sortie attendue
- * *#*
- * 1
- */
- class Solution {
- public static void main(String args[]) {
- final Scanner in = new Scanner(System.in);
- final String T = in.nextLine();
- final int i = T.indexOf('#');
- final int r = (T.length() - 1) - i;
- // Trouver la position du '#' dans la chaîne et calculer la réponse
- System.out.println(i < r ? i : r);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement