結果
問題 | No.1329 Square Sqsq |
ユーザー |
![]() |
提出日時 | 2021-05-01 01:36:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 193 bytes |
コンパイル時間 | 556 ms |
コンパイル使用メモリ | 65,536 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 05:18:24 |
合計ジャッジ時間 | 1,980 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#include <iostream>#include <string>#include <algorithm>using namespace std;int main(){string n;cin >> n;int ans = (n.length()+1)/2;cout << ans << endl;return 0;}