結果

問題 No.2789 hako111223’s Master Thesis
ユーザー Moss_LocalMoss_Local
提出日時 2024-06-21 23:31:55
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 951 ms
コンパイル使用メモリ 79,864 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-21 23:31:58
合計ジャッジ時間 2,387 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main() {
    // 入力の読み込み
    int A, B, C, D;
    cin >> A >> B >> C >> D;

    // 12月A日から1月B日までの日数を計算
    int days_to_deadline = (31 - A) + B;

    // 各言語での提出日数を計算
    int english_submission_days = C;
    int japanese_submission_days = D;

    // 条件のチェック
    if(english_submission_days <= days_to_deadline) {
        cout << 1 << endl;
    } else if(japanese_submission_days <= days_to_deadline) {
        cout << 2 << endl;
    } else {
        cout << 3 << endl;
    }

    return 0;
}
0