結果
問題 |
No.1459 スマホを落としたいだけなのに
|
ユーザー |
![]() |
提出日時 | 2021-03-31 22:58:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 541 bytes |
コンパイル時間 | 470 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-12-15 21:39:27 |
合計ジャッジ時間 | 2,359 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 WA * 2 |
other | AC * 3 WA * 27 |
ソースコード
def I(): return input() def IS(): return input().split() def II(): return int(input()) def IIS(): return map(int,input().split()) def LIIS(): return list(map(int,input().split())) def ZER(N): return [False for _ in range(N)] INF=float("inf") MOD=10**9+7 # V # / ̄ψ ̄\ # | 合格祈願 | # |_____| ############################################################################## n=II() if n==1: print(1) exit() val=n/4 if val<1: print(2) exit() import math print(math.ceil(val)+2)