結果

問題 No.1329 Square Sqsq
ユーザー naskyanaskya
提出日時 2021-01-08 23:29:23
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 175 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 68,936 KB
最終ジャッジ日時 2025-01-17 14:43:54
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <string>

int main() {
    std::string N;
    std::cin >> N;
    std::cout << std::max(1, static_cast<int>(N.size()) / 2);
}
0