about summary refs log tree commit diff
path: root/12/TP-HN-2010/BAI1.PAS
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2020-06-06 21:33:13 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2020-06-06 21:33:13 +0700
commit2f674dc80f0382f1c3178f435714960734dc9d3c (patch)
tree2abba7e4ec72bd16f58f7375126144d3fd9f4bca /12/TP-HN-2010/BAI1.PAS
parentb2d80610db6beda38573890ed169815e495bc663 (diff)
downloadcp-2f674dc80f0382f1c3178f435714960734dc9d3c.tar.gz
Reorganize stuff from secondary school
Diffstat (limited to '12/TP-HN-2010/BAI1.PAS')
-rw-r--r--12/TP-HN-2010/BAI1.PAS30
1 files changed, 0 insertions, 30 deletions
diff --git a/12/TP-HN-2010/BAI1.PAS b/12/TP-HN-2010/BAI1.PAS
deleted file mode 100644
index 029201d..0000000
--- a/12/TP-HN-2010/BAI1.PAS
+++ /dev/null
@@ -1,30 +0,0 @@
-var
-  f : text;
-  i : 1..30;
-  a : array[0..30] of qword;
-
-function gcd(a, b : qword) : qword;
-  var tmp : qword;
-  begin
-    while b > 0 do
-      begin
-        tmp := b;
-        b := a mod b;
-        a := tmp
-      end;
-    gcd := a
-  end;
-
-begin
-  assign(f, 'bai1.inp');
-  reset(f);
-  readln(f, a[0]);
-  for i := 1 to a[0] do read(f, a[i]);
-  close(f);
-  for i := a[0] - 1 downto 1 do
-    a[i] := a[i] * a[i + 1] div gcd(a[i], a[i + 1]);
-  assign(f, 'bai1.out');
-  rewrite(f);
-  writeln(f, a[1]);
-  close(f)
-end.