Aigremont, Haute-Marne

Aigremont is a commune in the Haute-Marne department in Grand Est region in northeastern France.

Aigremont
Coat of arms
Location of Aigremont
Aigremont
Aigremont
Coordinates: 48°01′01″N 5°43′05″E
CountryFrance
RegionGrand Est
DepartmentHaute-Marne
ArrondissementLangres
CantonBourbonne-les-Bains
IntercommunalityLes Savoir-Faire
Government
  Mayor (2014-2020) Robert Lefaivre
Area
1
4.87 km2 (1.88 sq mi)
Population
 (2017-01-01)[1]
20
  Density4.1/km2 (11/sq mi)
Time zoneUTC+01:00 (CET)
  Summer (DST)UTC+02:00 (CEST)
INSEE/Postal code
52002 /52400
1 French Land Register data, which excludes lakes, ponds, glaciers > 1 km2 (0.386 sq mi or 247 acres) and river estuaries.

Population

Historical population
YearPop.±%
200621    
200722+4.8%
200822+0.0%
200923+4.5%
201023+0.0%
201123+0.0%
201222−4.3%
201320−9.1%
201419−5.0%
201519+0.0%
201618−5.3%
gollark: That's the compiler.
gollark: Yep!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: And *is* Haskell necessarily that fast?
gollark: <@!341618941317349376> is being stupid.

See also

References

  1. "Populations légales 2017". INSEE. Retrieved 6 January 2020.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.