結果

問題 No.1329 Square Sqsq
ユーザー tentententen
提出日時 2022-09-26 18:05:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 2,019 ms
コンパイル使用メモリ 72,668 KB
実行使用メモリ 50,916 KB
最終ジャッジ日時 2023-08-24 02:59:06
合計ジャッジ時間 4,790 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
49,448 KB
testcase_01 AC 41 ms
49,360 KB
testcase_02 AC 41 ms
49,416 KB
testcase_03 AC 66 ms
50,384 KB
testcase_04 AC 65 ms
50,292 KB
testcase_05 AC 65 ms
50,200 KB
testcase_06 AC 65 ms
48,436 KB
testcase_07 AC 67 ms
50,916 KB
testcase_08 AC 65 ms
50,264 KB
testcase_09 AC 64 ms
50,572 KB
testcase_10 AC 66 ms
50,264 KB
testcase_11 AC 66 ms
50,268 KB
testcase_12 AC 65 ms
50,688 KB
testcase_13 AC 64 ms
50,468 KB
testcase_14 AC 50 ms
50,652 KB
testcase_15 AC 43 ms
49,408 KB
testcase_16 AC 43 ms
49,368 KB
testcase_17 AC 49 ms
49,260 KB
testcase_18 AC 53 ms
50,860 KB
testcase_19 AC 51 ms
49,524 KB
testcase_20 AC 46 ms
49,448 KB
testcase_21 AC 46 ms
49,312 KB
testcase_22 AC 63 ms
50,260 KB
testcase_23 AC 50 ms
50,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        String s = sc.next();
        System.out.println((s.length() + 1) / 2);
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0