結果
| 問題 | No.2886 Milk |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2024-09-28 15:02:05 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 17 ms / 2,000 ms |
| コード長 | 257 bytes |
| 記録 | |
| コンパイル時間 | 335 ms |
| コンパイル使用メモリ | 79,092 KB |
| 実行使用メモリ | 16,640 KB |
| 最終ジャッジ日時 | 2026-07-05 20:24:54 |
| 合計ジャッジ時間 | 1,900 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#include <iostream>
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(nullptr);
cout.tie(nullptr);
int D;
cin >> D;
if(D<=100) cout << "Milk" << endl;
else cout << "Difficult" << endl;
return 0;
}
vjudge1