結果

問題 No.1329 Square Sqsq
ユーザー 遭難者遭難者
提出日時 2021-01-08 22:07:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 1,951 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 42,200 KB
最終ジャッジ日時 2024-11-16 12:18:17
合計ジャッジ時間 6,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,780 KB
testcase_01 AC 109 ms
40,188 KB
testcase_02 AC 112 ms
41,296 KB
testcase_03 AC 160 ms
41,816 KB
testcase_04 AC 169 ms
42,020 KB
testcase_05 AC 160 ms
41,716 KB
testcase_06 AC 178 ms
41,908 KB
testcase_07 AC 169 ms
42,044 KB
testcase_08 AC 170 ms
42,080 KB
testcase_09 AC 178 ms
42,116 KB
testcase_10 AC 172 ms
42,200 KB
testcase_11 AC 162 ms
41,828 KB
testcase_12 AC 166 ms
42,112 KB
testcase_13 AC 168 ms
41,916 KB
testcase_14 AC 115 ms
40,392 KB
testcase_15 AC 126 ms
41,160 KB
testcase_16 AC 112 ms
41,128 KB
testcase_17 AC 116 ms
40,468 KB
testcase_18 AC 142 ms
41,508 KB
testcase_19 AC 141 ms
41,448 KB
testcase_20 AC 116 ms
40,228 KB
testcase_21 AC 125 ms
41,176 KB
testcase_22 AC 162 ms
41,808 KB
testcase_23 AC 138 ms
41,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		ou.println((sc.next().length() - 1) / 2 + 1);
		ou.flush();
		sc.close();
	}
}
0