mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 12:59:24 +02:00
* generate input file in the test
git-svn-id: trunk@4019 -
This commit is contained in:
parent
d667a02b79
commit
96fba798f0
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -7178,7 +7178,6 @@ tests/webtbs/tw5015.pp svneol=native#text/plain
|
||||
tests/webtbs/tw5023.pp svneol=native#text/plain
|
||||
tests/webtbs/tw5036.pp svneol=native#text/plain
|
||||
tests/webtbs/tw5082.pp -text svneol=unset#text/plain
|
||||
tests/webtbs/tw5086.in -text
|
||||
tests/webtbs/tw5086.pp -text
|
||||
tests/webtbs/tw5094.pp -text
|
||||
tests/webtbs/tw6435.pp svneol=native#text/plain
|
||||
|
@ -1,2 +0,0 @@
|
||||
180 6
|
||||
37 78 59 100 64 128
|
@ -20,7 +20,7 @@ var
|
||||
|
||||
procedure readInput;
|
||||
begin
|
||||
assign(input,'tw5086.in');
|
||||
assign(input,'tw5086.tmp');
|
||||
reset(input);
|
||||
readln(v, k);
|
||||
readln(a1, a2, b1, b2, c1, c2);
|
||||
@ -203,7 +203,14 @@ begin
|
||||
halt(1);
|
||||
end;
|
||||
|
||||
var
|
||||
t : text;
|
||||
begin
|
||||
assign(t,'tw5086.tmp');
|
||||
rewrite(t);
|
||||
writeln(t,'180 6');
|
||||
writeln(t,'37 78 59 100 64 128');
|
||||
close(t);
|
||||
readInput;
|
||||
Solve;
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user