結果
問題 | No.1114 足し算盆に返らず |
ユーザー |
![]() |
提出日時 | 2020-07-19 22:04:38 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 303 bytes |
コンパイル時間 | 680 ms |
コンパイル使用メモリ | 82,460 KB |
実行使用メモリ | 66,036 KB |
最終ジャッジ日時 | 2024-12-17 15:20:25 |
合計ジャッジ時間 | 18,349 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 26 |
ソースコード
import sysinput=sys.stdin.readlinedef I(): return int(input())def MI(): return map(int, input().split())def LI(): return list(map(int, input().split()))def main():mod=10**9+7N=I()ans=[]for i in range(N//2+1,N+1):ans.append(i)print(' '.join(map(str,ans)))main()