以下の内容はhttps://blog.hamayanhamayan.com/entry/2019/09/11/203250より取得しました。


Password [AtCoder Beginner Contest 140 A]

https://atcoder.jp/contests/abc140/tasks/abc140_a

解説

https://atcoder.jp/contests/abc140/submissions/7443443

各桁についてN通りの候補があるため、答えはNNNになる。
つまり、N3を答えよう。

int N;
//---------------------------------------------------------------------------------------------------
void _main() {
    cin >> N;
    int ans = N * N * N;
    cout << ans << endl;
}



以上の内容はhttps://blog.hamayanhamayan.com/entry/2019/09/11/203250より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14