結果

問題 No.543 命題
ユーザー pekempey
提出日時 2017-07-16 17:57:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 68,224 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 04:24:07
合計ジャッジ時間 1,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>

int main() {
	std::string p, q;
	std::cin >> p >> q;
	std::cout << q << ' ' << p << std::endl;
}
0