結果
| 問題 | No.192 合成数 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-30 23:18:23 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 13 ms / 2,000 ms |
| + 320µs | |
| コード長 | 164 bytes |
| 記録 | |
| コンパイル時間 | 2,846 ms |
| コンパイル使用メモリ | 101,632 KB |
| 実行使用メモリ | 18,560 KB |
| 最終ジャッジ日時 | 2026-07-30 20:49:47 |
| 合計ジャッジ時間 | 4,683 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 25 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
public class Program {
public static void Main() {
int n = int.Parse(Console.ReadLine());
Console.WriteLine(n/100*100+4);
}
}