Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: iij

Problemset: Amazing tiling

Language: cpp

Time: 0.002 second

Submitted On: 2025-10-23 10:00:04

#include <iostream>
using namespace std;
int ans[10] = {1, 2, 5, 11, 24, 53, 117, 258, 569, 1255};
int main() {
    int n; cin >> n;
    cout << ans[n-1];
}