結果

問題 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,656 ms
コンパイル使用メモリ 228,236 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-18 16:56:41
合計ジャッジ時間 3,935 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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