結果
| 問題 | No.1415 100の倍数かつ正整数(1) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-08 09:20:42 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 2,000 ms |
| + 469µs | |
| コード長 | 310 bytes |
| 記録 | |
| コンパイル時間 | 4,970 ms |
| コンパイル使用メモリ | 171,556 KB |
| 実行使用メモリ | 193,660 KB |
| 最終ジャッジ日時 | 2026-07-19 06:41:44 |
| 合計ジャッジ時間 | 7,509 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (90 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
using System.Numerics;
class Program
{
static void Main(string[] args)
{
BigInteger input = BigInteger.Parse(Console.ReadLine()!);
if (input < 0)
{
Console.WriteLine(0);
}
else
{
Console.WriteLine(input / 100);
}
}
}