結果
| 問題 | No.903 太郎の確率 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-18 23:00:28 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
AC
|
| 実行時間 | 71 ms / 2,000 ms |
| + 362µs | |
| コード長 | 330 bytes |
| 記録 | |
| コンパイル時間 | 6,164 ms |
| コンパイル使用メモリ | 173,748 KB |
| 実行使用メモリ | 193,092 KB |
| 最終ジャッジ日時 | 2026-07-20 12:02:02 |
| 合計ジャッジ時間 | 6,889 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (99 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
using System.Security.Cryptography;
using Microsoft.VisualBasic;
class Program
{
static int NN => int.Parse(ReadLine());
public static void Main()
{
var n = NN;
WriteLine(1.0 / n);
}
}