結果
問題 |
No.1986 Yummy
|
ユーザー |
![]() |
提出日時 | 2022-08-03 16:14:24 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 126 bytes |
コンパイル時間 | 207 ms |
コンパイル使用メモリ | 27,392 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 09:29:33 |
合計ジャッジ時間 | 1,151 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 24 |
ソースコード
#include<stdio.h> int main() { int n; scanf("%d", &n); if (n&1) printf("1\n"); else printf("%d\n", n/2); return 0; }