結果

問題 No.1329 Square Sqsq
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-08 11:25:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 76,092 KB
実行使用メモリ 43,040 KB
最終ジャッジ日時 2024-10-09 20:26:49
合計ジャッジ時間 8,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,148 KB
testcase_01 AC 133 ms
41,136 KB
testcase_02 AC 131 ms
40,980 KB
testcase_03 AC 214 ms
41,976 KB
testcase_04 AC 215 ms
42,204 KB
testcase_05 AC 215 ms
42,428 KB
testcase_06 AC 209 ms
42,712 KB
testcase_07 AC 213 ms
42,752 KB
testcase_08 AC 214 ms
42,704 KB
testcase_09 AC 217 ms
42,816 KB
testcase_10 AC 217 ms
42,996 KB
testcase_11 AC 212 ms
42,792 KB
testcase_12 AC 204 ms
42,756 KB
testcase_13 AC 206 ms
43,040 KB
testcase_14 AC 170 ms
41,616 KB
testcase_15 AC 143 ms
41,708 KB
testcase_16 AC 132 ms
41,056 KB
testcase_17 AC 177 ms
42,032 KB
testcase_18 AC 189 ms
41,564 KB
testcase_19 AC 192 ms
42,284 KB
testcase_20 AC 175 ms
41,696 KB
testcase_21 AC 166 ms
41,416 KB
testcase_22 AC 212 ms
42,736 KB
testcase_23 AC 186 ms
41,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	String n = sc.nextLine();
	    	sc.close();
	    	System.out.println((int)Math.ceil(n.length() / 2.0));

	    	}

	    }
0