結果
| 問題 |
No.8064 う し た ぷ に き あ く ん 笑
|
| コンテスト | |
| ユーザー |
kenta255
|
| 提出日時 | 2020-04-01 23:16:51 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 245 bytes |
| コンパイル時間 | 1,808 ms |
| コンパイル使用メモリ | 193,132 KB |
| 最終ジャッジ日時 | 2025-01-09 12:23:44 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 47 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define FOR(I,A,B) for(ll I = ll(A); I < ll(B); ++I)
const ll MOD = 1000000007;
int main(){
string a;
int x=0;
while(cin>>a){
cout << a << " ";
}
cout << endl;
}
kenta255