結果

問題 No.1986 Yummy
ユーザー GrilledSushiGrilledSushi
提出日時 2022-06-25 06:08:36
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 1,897 ms
コンパイル使用メモリ 76,328 KB
実行使用メモリ 75,808 KB
最終ジャッジ日時 2024-11-09 02:53:54
合計ジャッジ時間 5,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print(int(n / 2) if n % 2 == 0 else "1")
0