結果

問題 No.2035 Tunnel
ユーザー tentententen
提出日時 2023-01-19 07:55:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 1,848 bytes
コンパイル時間 3,545 ms
コンパイル使用メモリ 89,932 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-06-12 20:38:07
合計ジャッジ時間 7,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,300 KB
testcase_01 AC 51 ms
49,976 KB
testcase_02 AC 48 ms
50,212 KB
testcase_03 AC 51 ms
50,508 KB
testcase_04 AC 56 ms
50,360 KB
testcase_05 AC 118 ms
54,056 KB
testcase_06 AC 122 ms
54,148 KB
testcase_07 AC 117 ms
54,276 KB
testcase_08 AC 111 ms
53,796 KB
testcase_09 AC 114 ms
54,052 KB
testcase_10 AC 124 ms
54,160 KB
testcase_11 AC 112 ms
52,148 KB
testcase_12 AC 119 ms
54,160 KB
testcase_13 AC 72 ms
50,376 KB
testcase_14 AC 75 ms
51,048 KB
testcase_15 AC 117 ms
52,180 KB
testcase_16 AC 108 ms
52,116 KB
testcase_17 AC 53 ms
50,336 KB
testcase_18 AC 60 ms
50,140 KB
testcase_19 AC 96 ms
51,760 KB
testcase_20 AC 113 ms
51,960 KB
testcase_21 AC 100 ms
51,788 KB
testcase_22 AC 90 ms
51,616 KB
testcase_23 AC 65 ms
51,008 KB
testcase_24 AC 101 ms
52,400 KB
testcase_25 AC 107 ms
51,876 KB
testcase_26 AC 112 ms
51,824 KB
testcase_27 AC 123 ms
53,860 KB
testcase_28 AC 105 ms
51,768 KB
testcase_29 AC 67 ms
50,752 KB
testcase_30 AC 67 ms
50,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] inputs = sc.next().toCharArray();
        int right = n - 1;
        int current = -1;
        while (right >= 0) {
            while (right >= 0 && inputs[right] == '.') {
                right--;
            }
            if (right >= 0) {
                current = Math.max(current + 2, n - right);
                right--;
            }
        }
        System.out.println(current);
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0