結果

問題 No.1329 Square Sqsq
ユーザー ks2mks2m
提出日時 2021-01-08 21:23:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-11-16 09:56:38
合計ジャッジ時間 6,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,744 KB
testcase_01 AC 108 ms
52,748 KB
testcase_02 AC 114 ms
54,268 KB
testcase_03 AC 173 ms
54,028 KB
testcase_04 AC 173 ms
54,196 KB
testcase_05 AC 172 ms
54,152 KB
testcase_06 AC 166 ms
54,052 KB
testcase_07 AC 180 ms
54,396 KB
testcase_08 AC 180 ms
54,216 KB
testcase_09 AC 183 ms
54,204 KB
testcase_10 AC 175 ms
54,176 KB
testcase_11 AC 171 ms
54,088 KB
testcase_12 AC 173 ms
54,200 KB
testcase_13 AC 179 ms
54,000 KB
testcase_14 AC 146 ms
54,084 KB
testcase_15 AC 125 ms
53,916 KB
testcase_16 AC 125 ms
54,148 KB
testcase_17 AC 131 ms
53,192 KB
testcase_18 AC 173 ms
54,252 KB
testcase_19 AC 159 ms
53,984 KB
testcase_20 AC 138 ms
54,044 KB
testcase_21 AC 140 ms
54,048 KB
testcase_22 AC 178 ms
54,028 KB
testcase_23 AC 155 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		sc.close();

		int n = s.length() + 1;
		System.out.println(n / 2);
	}
}
0