結果
| 問題 |
No.405 ローマ数字の腕時計
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-06-08 15:24:39 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,652 bytes |
| コンパイル時間 | 811 ms |
| コンパイル使用メモリ | 113,436 KB |
| 実行使用メモリ | 26,116 KB |
| 最終ジャッジ日時 | 2024-09-21 05:07:52 |
| 合計ジャッジ時間 | 2,102 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 WA * 6 RE * 1 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
namespace yukicoder
{
class Program
{
static void Main(string[] args)
{
string[] s = Console.ReadLine().Split(' ');
string[] s1 = { "I", "II", "III", "IIII", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII" };
int a = int.Parse(s[1]);
int t = 0;
int count = 11;
int t1 = 0;
for (int i = 0; i < 12; i++)
{
if (s1[i] == s[0])
{
t = i + 1;
t1 = t;
}
}
t += a;
if (t == 0)
{
count = 11;
Console.WriteLine(s1[count]);
}
else if (t > 12)
{
t %= 12;
if (t == 0)
{
Console.WriteLine(s1[t1 - 1]);
}
if (t != 0)
{
t -= 1;
Console.WriteLine(s1[t]);
}
}
else if (t < 0)
{
int k = a * -1;
for (int j = k; j > 0; j--)
{
count--;
if (count == 0)
{
count = 11;
}
}
Console.WriteLine(s1[count+1]);
}
else
{
if (t != 0)
{
t -= 1;
}
Console.WriteLine(s1[t]);
}
}
}
}