1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
{$mode objfpc}
uses
sysutils;
procedure testcard;
const
h = 1;
hexch : array[0..15] of char='0123456789ABCDEF';
var
c: cardinal;
l: longint;
s: shortstring;
b, b2: byte;
ch, ch2: char;
{$ifdef cpu64}
caught: boolean;
{$endif cpu64}
begin
s:='$0fffffff';
for b := low(hexch) to high(hexch) do
begin
s[2]:=hexch[b];
val(s,c,l);
if (l<>0) then
halt(b+h);
end;
s:='$fffffff0';
for b := low(hexch) to high(hexch) do
begin
s[length(s)]:=hexch[b];
val(s,c,l);
if (l<>0) then
halt(b+16+h);
end;
setlength(s,10);
s[1]:='$';
for b2:= 1 to high(hexch) do
begin
for b := 2 to length(s)-1 do
s[b]:=hexch[b2];
for b := low(hexch) to high(hexch) do
begin
s[length(s)]:=hexch[b];
{$ifdef cpu64}
{$r+}
try
caught:=false;
{$endif cpu64}
val(s,c,l);
{$ifdef cpu64}
except on e : exception do
caught:=true;
end;
if not caught then
{$else cpu64}
if (l=0) then
{$endif}
halt(b2+32+h);
end;
end;
s:='0294967295';
for ch := '0' to '4' do
begin
s[1]:=ch;
val(s,c,l);
if (l<>0) then
halt(ord(ch)-ord('0')+b+49+h);
end;
s:='4294967290';
for ch := '0' to '5' do
begin
s[length(s)]:=ch;
val(s,c,l);
if (l<>0) then
halt(ord(ch)-ord('0')+b+54+h);
end;
s:='4294967290';
for ch := '6' to '9' do
begin
s[length(s)]:=ch;
{$ifdef cpu64}
{$r+}
try
caught:=false;
{$endif cpu64}
val(s,c,l);
{$ifdef cpu64}
except on e : exception do
caught:=true;
end;
if not caught then
{$else cpu64}
if (l=0) then
{$endif cpu64}
halt(ord(ch)-ord('0')+b+54+h);
end;
setlength(s,length('4294967295')+1);
for ch2:= '1' to '3' do
begin
for b := 1 to length(s)-1 do
s[b]:=ch2;
for ch := '0' to '9' do
begin
s[length(s)]:=ch;
{$ifdef cpu64}
{$r+}
try
caught:=false;
{$endif cpu64}
val(s,c,l);
{$ifdef cpu64}
except on e : exception do
caught:=true;
end;
if not caught then
{$else cpu64}
if (l=0) then
{$endif cpu64}
halt(ord(ch2)-ord('1')+65+h);
end;
end;
end;
procedure testqword;
const
h = 71;
hexch : array[0..15] of char='0123456789ABCDEF';
var
c: qword;
l: longint;
s: shortstring;
b, b2: byte;
ch, ch2: char;
begin
s:='$0fffffffffffffff';
for b := low(hexch) to high(hexch) do
begin
s[2]:=hexch[b];
val(s,c,l);
if (l<>0) then
halt(b+h);
end;
s:='$fffffffffffffff0';
for b := low(hexch) to high(hexch) do
begin
s[length(s)]:=hexch[b];
val(s,c,l);
if (l<>0) then
halt(b+16+h);
end;
setlength(s,18);
s[1]:='$';
for b2:= 1 to high(hexch) do
begin
for b := 2 to length(s)-1 do
s[b]:=hexch[b2];
for b := low(hexch) to high(hexch) do
begin
s[length(s)]:=hexch[b];
val(s,c,l);
if (l=0) then
halt(b2+32+h);
end;
end;
s:='18446744073709551615';
for ch := '0' to '1' do
begin
s[1]:=ch;
val(s,c,l);
if (l<>0) then
halt(ord(ch)-ord('0')+b+49+h);
end;
s:='18446744073709551615';
for ch := '0' to '5' do
begin
s[length(s)]:=ch;
val(s,c,l);
if (l<>0) then
halt(ord(ch)-ord('0')+b+54+h);
end;
s:='18446744073709551615';
for ch := '6' to '9' do
begin
s[length(s)]:=ch;
val(s,c,l);
if (l=0) then
halt(ord(ch)-ord('0')+b+54+h);
end;
setlength(s,length('18446744073709551615')+1);
for ch2:= '1' to '1' do
begin
for b := 1 to length(s)-1 do
s[b]:=ch2;
for ch := '0' to '9' do
begin
s[length(s)]:=ch;
val(s,c,l);
if (l=0) then
halt(ord(ch2)-ord('1')+61+h);
end;
end;
end;
begin
testcard;
testqword;
end.
|