mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 20:13:14 +00:00
24 lines
383 B
C++
24 lines
383 B
C++
#include <iostream>
|
|
#include <cstdlib>
|
|
#include <cmath>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
for (int i = 0; i < 5; i++)
|
|
{
|
|
for (int j = 0; j < 5; j++)
|
|
{
|
|
int t;
|
|
cin >> t;
|
|
if (t == 1)
|
|
{
|
|
cout << abs(i - 2) + abs(j - 2) << endl;
|
|
exit(0);
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|