andmej / acm

My solutions for problems from the UVa Online Judge (Valladolid).

This URL has Read+Write access

acm / 10181 - 15-Puzzle problem / p10181.cpp
100644 14 lines (9 sloc) 0.179 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>
#include <map>
 
using namespace std;
 
typedef unsigned long long ull;
 
ull final = 0x123456789ABCDEF0LL;
 
int main(){
  printf("%llX\n", final);
  return 0;
}