結果
| 問題 |
No.1027 U+1F4A0
|
| コンテスト | |
| ユーザー |
forest3
|
| 提出日時 | 2020-04-19 10:34:42 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 220 bytes |
| コンパイル時間 | 1,398 ms |
| コンパイル使用メモリ | 165,584 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-04 18:19:31 |
| 合計ジャッジ時間 | 2,202 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 WA * 7 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main()
{
int D1, D2;
cin >> D1 >> D2;
int ans = 0;
int d = 4 * D2 - 8 * (D2 - D1);
if( d > 0 ) ans += 2 * 4;
else if( d == 0 ) ans += 4;
cout << ans << endl;
}
forest3