結果

問題 No.3181 find H
ユーザー 👑 Nachia
提出日時 2025-06-13 21:59:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 67,712 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-06-14 23:39:54
合計ジャッジ時間 1,767 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using i64 = long long;
using namespace std;

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    i64 R, X, Y; cin >> R >> X >> Y;
    cout << (X*3) << " " << (Y*3) << "\n";
    return 0;
}
0