結果
| 問題 |
No.2886 Milk
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-08 16:35:25 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 225 bytes |
| コンパイル時間 | 776 ms |
| コンパイル使用メモリ | 77,416 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2025-11-08 16:35:27 |
| 合計ジャッジ時間 | 2,324 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#include<iostream>
using namespace std;
using i32=int32_t;
using i64=int64_t;
i32 main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
i32 N;cin>>N;
if(N<=100)cout<<"Milk\n";
else cout<<"Difficult\n";
}