結果

問題 No.1329 Square Sqsq
ユーザー bluemeganebluemegane
提出日時 2021-01-09 08:58:38
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 1,325 ms
コンパイル使用メモリ 60,620 KB
実行使用メモリ 22,604 KB
最終ジャッジ日時 2023-08-10 23:12:01
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
20,376 KB
testcase_01 AC 52 ms
20,592 KB
testcase_02 AC 50 ms
22,444 KB
testcase_03 AC 54 ms
22,428 KB
testcase_04 AC 54 ms
20,352 KB
testcase_05 AC 53 ms
20,428 KB
testcase_06 AC 53 ms
22,496 KB
testcase_07 AC 52 ms
20,496 KB
testcase_08 AC 51 ms
20,416 KB
testcase_09 AC 51 ms
20,336 KB
testcase_10 AC 51 ms
20,380 KB
testcase_11 AC 52 ms
20,460 KB
testcase_12 AC 51 ms
20,560 KB
testcase_13 AC 53 ms
22,452 KB
testcase_14 AC 51 ms
22,520 KB
testcase_15 AC 50 ms
20,572 KB
testcase_16 AC 50 ms
22,532 KB
testcase_17 AC 51 ms
22,436 KB
testcase_18 AC 52 ms
20,484 KB
testcase_19 AC 50 ms
22,436 KB
testcase_20 AC 52 ms
22,604 KB
testcase_21 AC 51 ms
22,544 KB
testcase_22 AC 52 ms
20,580 KB
testcase_23 AC 50 ms
20,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var s = Console.ReadLine().Trim();
        var sL = s.Length;
        Console.WriteLine((sL + 1) / 2);
    }
}
0