結果

問題 No.8098 tan 2
ユーザー mencotton
提出日時 2023-03-31 22:08:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 65,568 KB
最終ジャッジ日時 2025-02-11 20:36:12
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main() {
    int n;
    cin >> n;
    cout << (n == 45 ? "Yes" : "Huga") << endl;
    return 0;
}
0