結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー yumechiyumechi
提出日時 2021-03-07 05:37:36
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 928 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 7,934 ms
コンパイル使用メモリ 248,408 KB
実行使用メモリ 63,324 KB
最終ジャッジ日時 2024-10-08 23:05:19
合計ジャッジ時間 30,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 875 ms
63,196 KB
testcase_01 AC 860 ms
63,308 KB
testcase_02 AC 862 ms
63,256 KB
testcase_03 AC 883 ms
63,232 KB
testcase_04 AC 908 ms
63,104 KB
testcase_05 AC 928 ms
63,108 KB
testcase_06 AC 884 ms
63,008 KB
testcase_07 AC 859 ms
63,208 KB
testcase_08 AC 886 ms
63,268 KB
testcase_09 AC 910 ms
62,996 KB
testcase_10 AC 855 ms
63,260 KB
testcase_11 AC 874 ms
63,248 KB
testcase_12 AC 873 ms
63,048 KB
testcase_13 AC 875 ms
63,120 KB
testcase_14 AC 893 ms
63,256 KB
testcase_15 AC 890 ms
63,000 KB
testcase_16 AC 875 ms
63,076 KB
testcase_17 AC 844 ms
63,280 KB
testcase_18 AC 859 ms
63,212 KB
testcase_19 AC 859 ms
63,204 KB
testcase_20 AC 846 ms
63,224 KB
testcase_21 AC 860 ms
63,008 KB
testcase_22 AC 854 ms
63,000 KB
testcase_23 AC 869 ms
63,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  def solve(n: String): String = {
    if(n.startsWith("-") || n.length < 3){
      "0"
    } else {
      n.substring(0, n.length - 2)
    }
  }

  val n = sc.next
  print(solve(n))
}
0