結果

問題 No.2253 Ignore Subtle Differences
ユーザー Maffy-0Maffy-0
提出日時 2023-03-24 21:45:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 285 bytes
コンパイル時間 3,665 ms
コンパイル使用メモリ 229,136 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-18 20:55:54
合計ジャッジ時間 4,187 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;

int main(void) {
    puts("0 0");
    puts("1000000000 0");
    int x = (0 + 1e9) / 2;
    int y = sqrt(3) / 2 * 1e9;
    cout << x << " " << y << endl;
    return 0;
}
0