結果

問題 No.544 Delete 7
ユーザー mbanmban
提出日時 2017-07-14 22:34:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 1,055 bytes
コンパイル時間 1,071 ms
コンパイル使用メモリ 110,608 KB
実行使用メモリ 25,944 KB
最終ジャッジ日時 2024-11-21 16:04:21
合計ジャッジ時間 4,237 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 48
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main()
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int N;
    private void Scan()
    {
        N = int.Parse(Console.ReadLine());
    }

    public void Solve()
    {
        Scan();
        string ansA = "";
        string ansB = "";
        while (N > 0)
        {
            int p = N % 10;
            if (p == 0)
            {
                ansA = "0" + ansA;
                ansB = "0" + ansB;
            }
            else if (p == 8)
            {
                ansA = "2" + ansA;
                ansB = "6" + ansB;
            }
            else
            {
                ansA = (p - 1).ToString() + ansA;
                ansB = "1" + ansB;
            }

            N /= 10;
        }
        Console.WriteLine("{0} {1}", int.Parse(ansA), int.Parse(ansB));
    }
}
0