結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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("999999999 0");
    int x = (0 + 1e9 - 1) / 2;
    int y = sqrt(3) / 2 * (1e9 - 1);
    cout << x << " " << y << endl;
    return 0;
}
0