結果
| 問題 |
No.1114 足し算盆に返らず
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-16 17:41:32 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 108 ms / 2,000 ms |
| コード長 | 108 bytes |
| コンパイル時間 | 315 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-10-09 14:52:49 |
| 合計ジャッジ時間 | 18,442 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 26 |
ソースコード
N=int(input())
M=(N+1)//2
for i in range(M):
if(i>0):print(" ",end="")
print(2*i+1,end="")
print("")