結果

問題 No.791 うし数列
ユーザー junsui
提出日時 2019-10-02 09:06:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 63,460 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-03 05:51:20
合計ジャッジ時間 1,072 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 7 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#define rep( i, n, m ) for(int i = ( n ); i < ( m ); i++)

typedef long long int ll;

int main( void ){
	std::string str;
	std::cin >> str;
	printf("%d\n", str.length()-1);
	return 0;
}
0