結果
問題 |
No.1986 Yummy
|
ユーザー |
![]() |
提出日時 | 2022-07-04 10:56:21 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 135 bytes |
コンパイル時間 | 426 ms |
コンパイル使用メモリ | 65,268 KB |
最終ジャッジ日時 | 2025-01-30 04:28:29 |
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 WA * 6 |
ソースコード
#include <cstdint> #include <iostream> int main() { std::uint32_t N; std::cin >> N; std::cout << (N > 1 ? N / 2 : 1) << '\n'; }