結果

問題 No.380 悪の台本
ユーザー vjudge1
提出日時 2025-04-18 16:09:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 161,256 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-04-18 16:09:49
合計ジャッジ時間 2,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 1 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
int const N=1e6+5;
int n,m,sum,cnt,t,ans;
signed main()
{
//	freopen("dialogue.in","r",stdin);
//	freopen("dialogue.out","r",stdout);
	ios::sync_with_stdio(0);
	cin.tie(0),cout.tie(0);
	string s;
    while(getline(cin,s))
    {
    	cout<<"CORRECT (maybe)\n"; 
	}
	return 0;
}
0