結果
問題 |
No.56 消費税
|
ユーザー |
![]() |
提出日時 | 2017-04-10 21:11:44 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 231 bytes |
コンパイル時間 | 697 ms |
コンパイル使用メモリ | 106,960 KB |
実行使用メモリ | 28,172 KB |
最終ジャッジ日時 | 2024-07-18 05:45:37 |
合計ジャッジ時間 | 2,074 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 4 |
other | AC * 3 WA * 20 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; class P { static void Main(string[] _) { _ = Console.ReadLine().Split(' '); int d = 100 * int.Parse(_[0]); int p = int.Parse(_[1]); Console.WriteLine(d * (1 + p) / 100); } }