結果
問題 | No.2886 Milk |
ユーザー |
|
提出日時 | 2024-09-13 21:33:37 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,290 bytes |
コンパイル時間 | 4,541 ms |
コンパイル使用メモリ | 271,544 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-13 21:33:51 |
合計ジャッジ時間 | 5,430 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
#include <bits/stdc++.h>#define rep(i, a, n) for (int i = a; i < (int)(n); i++)#define vi vector<int>#define vs vector<string>#define vvi vector<vector<int>>#define vb vector<bool>#define ll long long#define dd doubleusing namespace std;void faster(){ios::sync_with_stdio(false);cin.tie(0);}template <typename T>void input(T &x){cin >> x;}template <typename T, typename... Args>void input(T &x, Args &...args){cin >> x;input(args...);}template <typename T>void sorts(vector<T> &vec){sort(vec.begin(), vec.end());}template <typename T>void rsorts(vector<T> &vec){sort(vec.begin(), vec.end(), greater<T>());}template <class T>inline bool chmin(T &a, T b){if (a > b){a = b;return true;}return false;}template <class T>inline bool chmax(T &a, T b){if (a < b){a = b;return true;}return false;}struct timekeeper{chrono::high_resolution_clock::time_point starttime;chrono::high_resolution_clock::time_point endtime;chrono::duration<double> duration;};int main(){int d;input(d);if (d <= 100){cout << "Milk" << endl;}else{cout << "Difficult" << endl;}return 0;}