結果

問題 No.423 ハムスター語初級(数詞)
ユーザー gigime
提出日時 2016-09-22 22:30:06
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 1,068 ms
コンパイル使用メモリ 157,668 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 13:39:56
合計ジャッジ時間 1,549 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define FOR(i,l,r) for(int i = (l);i < (r);i++)
#define ALL(x) (x).begin(),(x).end()
template<typename T> void chmax(T& a,const T& b){if(a < b) a = b;}
template<typename T> void chmin(T& a,const T& b){if(b < a) a = b;}
typedef long long ll;

string S;

int main()
{
	cin >> S;
	S += "ham";

	cout << S << endl;

	return 0;
}
0