結果

問題 No.3181 find H
ユーザー MM
提出日時 2025-06-13 23:08:49
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 1,990 ms
コンパイル使用メモリ 194,488 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-06-13 23:08:53
合計ジャッジ時間 3,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
	double x,y;
	cin >> x >> y;
	x *= 3; y *= 3;
	cout << x << " " << y << endl;
}
0