AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) A: Shiritori if python3 a, b, c = input().split() if a[len(a)-1] == b[0] and b[len(

Size: px
Start display at page:

Download "AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) A: Shiritori if python3 a, b, c = input().split() if a[len(a)-1] == b[0] and b[len("

Transcription

1 AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) A: Shiritori if python3 a, b, c = input().split() if a[len(a)-1] == b[0] and b[len(b)-1] == c[0]: print( YES ) else: print( NO ) 1

2 B: Choice Integers A A 1 ( ) A%B, 2A%B, 3A%B,... A%B A B (k + B)A%B = (ka + BA)%B = ka%b B A BA B 2

3 C: Sentou i i + 1 T T T min(t, ) 3

4 D: Simple Knapsack N W v i ABC032 D i = 2, 3,, N w 1 w i w (N/4) 4 = 25 4 = O( ) C++ Java D Python Ruby O(1) 4

5 E: Ball Coloring 400, 000 R max, R min, B max, B min 4 MIN = min(x 1, x 2,..., x n, y 1, y 2,..., y n ) MAX = max(x 1, x 2,..., x n, y 1, y 2,..., y n ) R min = MIN, B min = MIN R max = MAX, B max = MAX R min = MIN&B max = MAX R min = MIN&B max = MAX R min = MIN&B max = MAX R min B max R min = MIN&R max = MAX 1-5

6 F: Many Move DP O(N 3 ) DP dp[i][a][b] := i a b O(N 2 ) dp[i][a] := i a x i x 0 = B dp[0][a] = 0, dp[0][x] = (x A) min(dp[q][1], dp[q][2],..., dp[q][n]) DP dp[i][a] = dp[i 1][a] + x i 1 + x i (a x i ) dp[i][x i 1 ] = min(dp[i 1][x i 1 ] + x i 1 + x i, min j=1,2,...,n (dp[i 1][j] + j x i )) DP dp[i 1][1], dp[i 1][2],..., dp[i 1][n] dp[i][1], dp[i][2],..., dp[i][n] 1. x i 1 + xi 2. min j=1,2,...,n (dp[i 1][j] + j x i ) dp[i][x i 1 ] min j=1,2,...,n (dp[i 1][j] + j x i ) j x i min j=1,2,...,xi (dp[i 1][j] j + x i ) min j=xi+1,2,...,n(dp[i 1][j] + j x i ) dp[i 1][j] j dp[i 1][j] + j min dp[i 1][j] dp[i 1][j] j dp[i 1][j] + j 6

7 dp[i 1][j] j dp[i 1][j] + j add min Segment Tree 7

8 AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) A: Shiritori python3 example: a, b, c = input ( ). s p l i t ( ) i f a [ l e n ( a ) 1] == b [ 0 ] and b [ l e n ( b) 1] == c [ 0 ] : p r i n t ( YES ) e l s e : p r i n t ( NO ) 1

9 B: Choice Integers The sum of multiples of A is always a multiple of A. Thus, we can assume that we choose only one integer. Consider the sequence A%B, 2A%B, 3A%B,... Since (k + B)A%B = (ka + BA)%B = ka%b, this sequence has a period of B. Therefore, we can check the first B elements of this sequence by brute force. 2

10 C: Sentou After the i-th person pushes the switch, the i + 1-th person If the i+1-th person comes within T seconds, the water keeps emitting. If the i + 1-th person comes after at least T seconds, the water emits for T seconds and stops. Therefore, the answer is the sum of min(t, t i+1 t i ). 3

11 D: Simple Knapsack This problem is known as the knapsack problem, and it s hard to solve in general case. This time we use the constraint w 1 w i w Because of this, there are at most 4 possible weights for a single item. For each weight w, let s fix k w, the number of items of weight w we choose. Obviously, we should choose k w items greedily (in the descending order of values). Let A, B, C, D be the number of items of weights w 1, w 1 +1, w 1 +2, w 1 +3, respectively. This algorithm works in O(ABCD). In the worst case, this is (N/4) 4 = 25 4 =

12 E: Ball Coloring Let MIN = min(x 1, x 2,..., x n, y 1, y 2,..., y n ) MAX = max(x 1, x 2,..., x n, y 1, y 2,..., y n ). One of R min = MIN, B min = MIN will be satisfied, and one of R max = MAX, B max = MAX will be satisfied. Without loss of generality, we can consider the following two cases: R min = MIN&B max = MAX In this case we want to minimize R max and maximize B min. For each bag, we should color the ball with the larger integer blue, and color the other ball blue. R min = MIN&R max = MAX In this case we are only interested in blue balls (the value of B max B min. First, for each bag, we color the ball with the smaller integer blue, and sort the blue balls in ascending order. Call them z 1,..., z n (in ascending order). Then, for each i = 1,..., n, color z i red and color the opponent of z i blue. 5

13 F: Many Move Let dp[i][a][b] be the minimum cost required to process the first i queries such that the tokens are at a and b after the queries. This DP works in O(N 3 ). We ll improve this. Let dp[i][a] be the minimum cost required to process the first i queries such that the tokens are at a and x i after the queries. This DP works in O(N 2 ). Suppose that we have an array dp[i 1][1], dp[i 1][2],..., dp[i 1][n], and we want to convert it to the array dp[i][1], dp[i][2],..., dp[i][n]. The following operations are required: 1. Add x i 1 + xi to the whole array. 2. Compute min j=1,2,...,n (dp[i 1][j] + j x i ). This can be done by two RMQs: one of them holds the values of dp[i 1][j] j and the other one holds the values of dp[i 1][j] + j. 6

1 # include < stdio.h> 2 # include < string.h> 3 4 int main (){ 5 char str [222]; 6 scanf ("%s", str ); 7 int n= strlen ( str ); 8 for ( int i=n -2; i

1 # include < stdio.h> 2 # include < string.h> 3 4 int main (){ 5 char str [222]; 6 scanf (%s, str ); 7 int n= strlen ( str ); 8 for ( int i=n -2; i ABC066 / ARC077 writer: nuip 2017 7 1 For International Readers: English editorial starts from page 8. A : ringring a + b b + c a + c a, b, c a + b + c 1 # include < stdio.h> 2 3 int main (){ 4 int a,

More information

Page 1 of 6 B (The World of Mathematics) November 20, 2006 Final Exam 2006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (10pts) (a

Page 1 of 6 B (The World of Mathematics) November 20, 2006 Final Exam 2006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (10pts) (a Page 1 of 6 B (The World of Mathematics) November 0, 006 Final Exam 006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (a) (Decide whether the following holds by completing the truth

More information

M-SOLUTIONS writer: yokozuna A: Sum of Interior Angles For International Readers: English editorial starts on page 7. N 180(N 2) C++ #i n

M-SOLUTIONS writer: yokozuna A: Sum of Interior Angles For International Readers: English editorial starts on page 7. N 180(N 2) C++ #i n M-SOLUTIONS writer: yokozuna 57 2019 6 1 A: Sum of Interior Angles For International Readers: English editorial starts on page 7. N 180(N 2) C++ #i n c l u d e using namespace std ; i n t main

More information

n 2 n (Dynamic Programming : DP) (Genetic Algorithm : GA) 2 i

n 2 n (Dynamic Programming : DP) (Genetic Algorithm : GA) 2 i 15 Comparison and Evaluation of Dynamic Programming and Genetic Algorithm for a Knapsack Problem 1040277 2004 2 25 n 2 n (Dynamic Programming : DP) (Genetic Algorithm : GA) 2 i Abstract Comparison and

More information

B: flip / 2 k l k(m l) + (N k)l k, l k(m l) + (N k)l = K O(NM) O(N) 2

B: flip / 2 k l k(m l) + (N k)l k, l k(m l) + (N k)l = K O(NM) O(N) 2 Code festival A sugim48 and DEGwer 2017/09/15 For International Readers: English editorial starts on page 9. A: Snuke s favorite YAKINIKU 4 YAKI C/C++ S 4 #include i n t main ( ) { char

More information

25 II :30 16:00 (1),. Do not open this problem booklet until the start of the examination is announced. (2) 3.. Answer the following 3 proble

25 II :30 16:00 (1),. Do not open this problem booklet until the start of the examination is announced. (2) 3.. Answer the following 3 proble 25 II 25 2 6 13:30 16:00 (1),. Do not open this problem boolet until the start of the examination is announced. (2) 3.. Answer the following 3 problems. Use the designated answer sheet for each problem.

More information

diverta 2019 Programming Contest camypaper For International Readers: English editorial starts on page 8. A: Consecutive Integers K 1 N K +

diverta 2019 Programming Contest camypaper For International Readers: English editorial starts on page 8. A: Consecutive Integers K 1 N K + diverta 2019 Programming Contest camypaper 2019 5 11 For International Readers: English editorial starts on page 8. A: Consecutive Integers K 1 N K + 1 N K + 1 C++ : https://atcoder.jp/contests/diverta2019/submissions/5322859

More information

B : Find Symmetries (A, B) (A + 1, B + 1) A + 1 B + 1 N + k k (A, B) (0, 0), (0, 1),..., (0.N 1) N O(N 2 ) N O(N 3 ) 2

B : Find Symmetries (A, B) (A + 1, B + 1) A + 1 B + 1 N + k k (A, B) (0, 0), (0, 1),..., (0.N 1) N O(N 2 ) N O(N 3 ) 2 Atcoder Grand Contest 023 writer : maroonrk 30 4 28 For International Readers: English editorial starts from page 7. A : Zero-Sum Ranges S N + 1 S 0 = 0, S i = S i 1 + A i S 2 0 S 2 S sort sort O(NlogN)

More information

2

2 2011 8 6 2011 5 7 [1] 1 2 i ii iii i 3 [2] 4 5 ii 6 7 iii 8 [3] 9 10 11 cf. Abstracts in English In terms of democracy, the patience and the kindness Tohoku people have shown will be dealt with as an exception.

More information

h23w1.dvi

h23w1.dvi 24 I 24 2 8 10:00 12:30 1),. Do not open this problem booklet until the start of the examination is announced. 2) 3.. Answer the following 3 problems. Use the designated answer sheet for each problem.

More information

Webster's New World Dictionary of the American Language, College Edition. N. Y. : The World Publishing Co., 1966. [WNWD) Webster 's Third New International Dictionary of the English Language-Unabridged.

More information

AGC 034 yosupo, sigma For International Readers: English editorial starts on page 8. 1

AGC 034 yosupo, sigma For International Readers: English editorial starts on page 8. 1 AGC 034 yosupo, sigma425 2019 6 2 For International Readers: English editorial starts on page 8. 1 A: Kenken Race 2 C < D C > D 3 B D 3 (C++): https://atcoder.jp/contests/agc034/submissions/5747486 2 B:

More information

elemmay09.pub

elemmay09.pub Elementary Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Number Challenge Time:

More information

ON A FEW INFLUENCES OF THE DENTAL CARIES IN THE ELEMENTARY SCHOOL PUPIL BY Teruko KASAKURA, Naonobu IWAI, Sachio TAKADA Department of Hygiene, Nippon Dental College (Director: Prof. T. Niwa) The relationship

More information

149 (Newell [5]) Newell [5], [1], [1], [11] Li,Ryu, and Song [2], [11] Li,Ryu, and Song [2], [1] 1) 2) ( ) ( ) 3) T : 2 a : 3 a 1 :

149 (Newell [5]) Newell [5], [1], [1], [11] Li,Ryu, and Song [2], [11] Li,Ryu, and Song [2], [1] 1) 2) ( ) ( ) 3) T : 2 a : 3 a 1 : Transactions of the Operations Research Society of Japan Vol. 58, 215, pp. 148 165 c ( 215 1 2 ; 215 9 3 ) 1) 2) :,,,,, 1. [9] 3 12 Darroch,Newell, and Morris [1] Mcneil [3] Miller [4] Newell [5, 6], [1]

More information

1 Fig. 1 Extraction of motion,.,,, 4,,, 3., 1, 2. 2.,. CHLAC,. 2.1,. (256 ).,., CHLAC. CHLAC, HLAC. 2.3 (HLAC ) r,.,. HLAC. N. 2 HLAC Fig. 2

1 Fig. 1 Extraction of motion,.,,, 4,,, 3., 1, 2. 2.,. CHLAC,. 2.1,. (256 ).,., CHLAC. CHLAC, HLAC. 2.3 (HLAC ) r,.,. HLAC. N. 2 HLAC Fig. 2 CHLAC 1 2 3 3,. (CHLAC), 1).,.,, CHLAC,.,. Suspicious Behavior Detection based on CHLAC Method Hideaki Imanishi, 1 Toyohiro Hayashi, 2 Shuichi Enokida 3 and Toshiaki Ejima 3 We have proposed a method for

More information

4.1 % 7.5 %

4.1 % 7.5 % 2018 (412837) 4.1 % 7.5 % Abstract Recently, various methods for improving computial performance have been proposed. One of these various methods is Multi-core. Multi-core can execute processes in parallel

More information

A5 PDF.pwd

A5 PDF.pwd DV DV DV DV DV DV 67 1 2016 5 383 DV DV DV DV DV DV DV DV DV 384 67 1 2016 5 DV DV DV NPO DV NPO NPO 67 1 2016 5 385 DV DV DV 386 67 1 2016 5 DV DV DV DV DV WHO Edleson, J. L. 1999. The overlap between

More information

L1 What Can You Blood Type Tell Us? Part 1 Can you guess/ my blood type? Well,/ you re very serious person/ so/ I think/ your blood type is A. Wow!/ G

L1 What Can You Blood Type Tell Us? Part 1 Can you guess/ my blood type? Well,/ you re very serious person/ so/ I think/ your blood type is A. Wow!/ G L1 What Can You Blood Type Tell Us? Part 1 Can you guess/ my blood type? 当ててみて / 私の血液型を Well,/ you re very serious person/ so/ I think/ your blood type is A. えーと / あなたはとっても真面目な人 / だから / 私は ~ と思います / あなたの血液型は

More information

L3 Japanese (90570) 2008

L3 Japanese (90570) 2008 90570-CDT-08-L3Japanese page 1 of 15 NCEA LEVEL 3: Japanese CD TRANSCRIPT 2008 90570: Listen to and understand complex spoken Japanese in less familiar contexts New Zealand Qualifications Authority: NCEA

More information

126 学習院大学人文科学論集 ⅩⅩⅡ(2013) 1 2

126 学習院大学人文科学論集 ⅩⅩⅡ(2013) 1 2 125 126 学習院大学人文科学論集 ⅩⅩⅡ(2013) 1 2 127 うつほ物語 における言語認識 3 4 5 128 学習院大学人文科学論集 ⅩⅩⅡ(2013) 129 うつほ物語 における言語認識 130 学習院大学人文科学論集 ⅩⅩⅡ(2013) 6 131 うつほ物語 における言語認識 132 学習院大学人文科学論集 ⅩⅩⅡ(2013) 7 8 133 うつほ物語 における言語認識 134

More information

早稲田大学現代政治経済研究所 ダブルトラック オークションの実験研究 宇都伸之早稲田大学上條良夫高知工科大学船木由喜彦早稲田大学 No.J1401 Working Paper Series Institute for Research in Contemporary Political and Ec

早稲田大学現代政治経済研究所 ダブルトラック オークションの実験研究 宇都伸之早稲田大学上條良夫高知工科大学船木由喜彦早稲田大学 No.J1401 Working Paper Series Institute for Research in Contemporary Political and Ec 早稲田大学現代政治経済研究所 ダブルトラック オークションの実験研究 宇都伸之早稲田大学上條良夫高知工科大学船木由喜彦早稲田大学 No.J1401 Working Paper Series Institute for Research in Contemporary Political and Economic Affairs Waseda University 169-8050 Tokyo,Japan

More information

A comparison of abdominal versus vaginal hysterectomy for leiomyoma and adenomyosis Kenji ARAHORI, Hisasi KATAYAMA, Suminori NIOKA Department of Obstetrics and Gnecology, National Maizuru Hospital,Kyoto,

More information

Vol. 42 No MUC-6 6) 90% 2) MUC-6 MET-1 7),8) 7 90% 1 MUC IREX-NE 9) 10),11) 1) MUCMET 12) IREX-NE 13) ARPA 1987 MUC 1992 TREC IREX-N

Vol. 42 No MUC-6 6) 90% 2) MUC-6 MET-1 7),8) 7 90% 1 MUC IREX-NE 9) 10),11) 1) MUCMET 12) IREX-NE 13) ARPA 1987 MUC 1992 TREC IREX-N Vol. 42 No. 6 June 2001 IREX-NE F 83.86 A Japanese Named Entity Extraction System Based on Building a Large-scale and High-quality Dictionary and Pattern-matching Rules Yoshikazu Takemoto, Toshikazu Fukushima

More information

Table 1. Assumed performance of a water electrol ysis plant. Fig. 1. Structure of a proposed power generation system utilizing waste heat from factori

Table 1. Assumed performance of a water electrol ysis plant. Fig. 1. Structure of a proposed power generation system utilizing waste heat from factori Proposal and Characteristics Evaluation of a Power Generation System Utilizing Waste Heat from Factories for Load Leveling Pyong Sik Pak, Member, Takashi Arima, Non-member (Osaka University) In this paper,

More information

Security of Leasehold Interest -in cases of the False Housing Registries by Other Than the Lessee by Shin ISHIKAWA The House Protection Act 1909 in Japan, under which many lessees can be protected from

More information

The 15th Game Programming Workshop 2010 Magic Bitboard Magic Bitboard Bitboard Magic Bitboard Bitboard Magic Bitboard Magic Bitboard Magic Bitbo

The 15th Game Programming Workshop 2010 Magic Bitboard Magic Bitboard Bitboard Magic Bitboard Bitboard Magic Bitboard Magic Bitboard Magic Bitbo Magic Bitboard Magic Bitboard Bitboard Magic Bitboard Bitboard Magic Bitboard 64 81 Magic Bitboard Magic Bitboard Bonanza Proposal and Implementation of Magic Bitboards in Shogi Issei Yamamoto, Shogo Takeuchi,

More information

x p v p (x) x p p-adic valuation of x v 2 (8) = 3, v 3 (12) = 1, v 5 (10000) = 4, x 8 = 2 3, 12 = 2 2 3, = 10 4 = n a, b a

x p v p (x) x p p-adic valuation of x v 2 (8) = 3, v 3 (12) = 1, v 5 (10000) = 4, x 8 = 2 3, 12 = 2 2 3, = 10 4 = n a, b a . x p v p (x) x p p-adic valuation of x v (8) =, v () =, v 5 () =, x 8 =, =, = = 5. n a, b a b n a b n a b (mod n) (mod ), 5 (mod ), (mod 7), a b = 8 =, 5 = 8 = ( ), = = 7 ( ),. Z n a b (mod n) a n b n

More information

在日外国人高齢者福祉給付金制度の創設とその課題

在日外国人高齢者福祉給付金制度の創設とその課題 Establishment and Challenges of the Welfare Benefits System for Elderly Foreign Residents In the Case of Higashihiroshima City Naoe KAWAMOTO Graduate School of Integrated Arts and Sciences, Hiroshima University

More information

Analysis of Algorithms

Analysis of Algorithms アルゴリズムの設計と解析 黄潤和 佐藤温 (TA) 2012.4~ Contents (L3 Search trees) Searching problems AVL tree 2-3-4 trees Red-Black tree 2 Searching Problems Problem: Given a (multi) set S of keys and a search key K, find

More information

2 ( ) i

2 ( ) i 25 Study on Rating System in Multi-player Games with Imperfect Information 1165069 2014 2 28 2 ( ) i ii Abstract Study on Rating System in Multi-player Games with Imperfect Information Shigehiko MORITA

More information

Microsoft Word - Win-Outlook.docx

Microsoft Word - Win-Outlook.docx Microsoft Office Outlook での設定方法 (IMAP および POP 編 ) How to set up with Microsoft Office Outlook (IMAP and POP) 0. 事前に https://office365.iii.kyushu-u.ac.jp/login からサインインし 以下の手順で自分の基本アドレスをメモしておいてください Sign

More information

「プログラミング言語」 SICP 第4章 ~超言語的抽象~ その6

「プログラミング言語」  SICP 第4章   ~超言語的抽象~   その6 SICP 4 6 igarashi@kuis.kyoto-u.ac.jp July 21, 2015 ( ) SICP 4 ( 6) July 21, 2015 1 / 30 4.3: Variations on a Scheme Non-deterministic Computing 4.3.1: amb 4.3.2: 4.3.3: amb ( ) SICP 4 ( 6) July 21, 2015

More information

22 2016 3 82 1 1

22 2016 3 82 1 1 : 81 1 2 3 4 1990 2015 22 2016 3 82 1 1 83 : 2 5 84 22 2016 3 6 3 7 8 2 : 85 1 S 12 S S S S S S S S S 86 22 2016 3 S S S S S S S S 2 S S : 87 S 9 3 2 1 10 S 11 22 2016 3 88 1 : 89 1 2 3 4 90 22 2016 3

More information

Clustering in Time and Periodicity of Strong Earthquakes in Tokyo Masami OKADA Kobe Marine Observatory (Received on March 30, 1977) The clustering in time and periodicity of earthquake occurrence are investigated

More information

123-099_Y05…X…`…‘…“†[…h…•

123-099_Y05…X…`…‘…“†[…h…• 1. 2 1993 2001 2 1 2 1 2 1 99 2009. 1982 250 251 1991 112 115 1988 75 2004 132 2006 73 3 100 3 4 1. 2. 3. 4. 5. 6.. 3.1 1991 2002 2004 3 4 101 2009 3 4 4 5 1 5 6 1 102 5 6 3.2 2 7 8 2 X Y Z Z X 103 2009

More information

ABSTRACT The "After War Phenomena" of the Japanese Literature after the War: Has It Really Come to an End? When we consider past theses concerning criticism and arguments about the theme of "Japanese Literature

More information

Housing Purchase by Single Women in Tokyo Yoshilehl YUI* Recently some single women purchase their houses and the number of houses owned by single women are increasing in Tokyo. And their housing demands

More information

The Key Questions about Today's "Experience Loss": Focusing on Provision Issues Gerald ARGENTON These last years, the educational discourse has been focusing on the "experience loss" problem and its consequences.

More information

日本語教育紀要 7/pdf用 表紙

日本語教育紀要 7/pdf用 表紙 JF JF NC JF JF NC peer JF Can-do JF JF http : // jfstandard.jpjf Can-doCommon European Framework of Reference for Languages : learning, teaching,assessment CEFR AABBCC CEFR ABB A A B B B B Can-do CEFR

More information

2017 (413812)

2017 (413812) 2017 (413812) Deep Learning ( NN) 2012 Google ASIC(Application Specific Integrated Circuit: IC) 10 ASIC Deep Learning TPU(Tensor Processing Unit) NN 12 20 30 Abstract Multi-layered neural network(nn) has

More information

1 1 tf-idf tf-idf i

1 1 tf-idf tf-idf i 14 A Method of Article Retrieval Utilizing Characteristics in Newspaper Articles 1055104 2003 1 31 1 1 tf-idf tf-idf i Abstract A Method of Article Retrieval Utilizing Characteristics in Newspaper Articles

More information

OHTA Motoko SummaryThe purpose of this paper is to review "KEISEIKAN-DIARY()", which is possessed in Tanaka Library of Aizutakada-machi, Oonuma-gun, Fukushima Prefecture. The author of this diary is Tanaka

More information

The Indirect Support to Faculty Advisers of die Individual Learning Support System for Underachieving Student The Indirect Support to Faculty Advisers of the Individual Learning Support System for Underachieving

More information

1 [1, 2, 3, 4, 5, 8, 9, 10, 12, 15] The Boston Public Schools system, BPS (Deferred Acceptance system, DA) (Top Trading Cycles system, TTC) cf. [13] [

1 [1, 2, 3, 4, 5, 8, 9, 10, 12, 15] The Boston Public Schools system, BPS (Deferred Acceptance system, DA) (Top Trading Cycles system, TTC) cf. [13] [ Vol.2, No.x, April 2015, pp.xx-xx ISSN xxxx-xxxx 2015 4 30 2015 5 25 253-8550 1100 Tel 0467-53-2111( ) Fax 0467-54-3734 http://www.bunkyo.ac.jp/faculty/business/ 1 [1, 2, 3, 4, 5, 8, 9, 10, 12, 15] The

More information

九州大学学術情報リポジトリ Kyushu University Institutional Repository 看護師の勤務体制による睡眠実態についての調査 岩下, 智香九州大学医学部保健学科看護学専攻 出版情報 : 九州大学医学部保健学

九州大学学術情報リポジトリ Kyushu University Institutional Repository 看護師の勤務体制による睡眠実態についての調査 岩下, 智香九州大学医学部保健学科看護学専攻   出版情報 : 九州大学医学部保健学 九州大学学術情報リポジトリ Kyushu University Institutional Repository 看護師の勤務体制による睡眠実態についての調査 岩下, 智香九州大学医学部保健学科看護学専攻 https://doi.org/10.15017/4055 出版情報 : 九州大学医学部保健学科紀要. 8, pp.59-68, 2007-03-12. 九州大学医学部保健学科バージョン : 権利関係

More information

untitled

untitled () 2006 i Foundationpowdermakeup No.1 ii iii iv Research on selection criterion of cosmetics that use the consumer's Eras analysis Consideration change by bringing up child Fukuda Eri 1.Background, purpose,

More information

[109-126]藤原武男

[109-126]藤原武男 - - Humane Vitae human individual human person individual person p individual person individual human person.. active brain Mayo Clinic Takeo Fujiwara In order to discuss the concept of the beginning

More information

平成29年度英語力調査結果(中学3年生)の概要

平成29年度英語力調査結果(中学3年生)の概要 1 2 3 1 そう思う 2 どちらかといえば そう思う 3 どちらかといえば そう思わない 4 そう思わない 4 5 楽しめるようになりたい 6 1 そう思う 2 どちらかといえば そう思う 3 どちらかといえば そう思わない 4 そう思わない 7 1 そう思う 2 どちらかといえば そう思う 3 どちらかといえば そう思わない 4 そう思わない 8 1 そう思う 2 どちらかといえば そう思う

More information

C. S2 X D. E.. (1) X S1 10 S2 X+S1 3 X+S S1S2 X+S1+S2 X S1 X+S S X+S2 X A. S1 2 a. b. c. d. e. 2

C. S2 X D. E.. (1) X S1 10 S2 X+S1 3 X+S S1S2 X+S1+S2 X S1 X+S S X+S2 X A. S1 2 a. b. c. d. e. 2 I. 200 2 II. ( 2001) 30 1992 Do X for S2 because S1(is not desirable) XS S2 A. S1 S2 B. S S2 S2 X 1 C. S2 X D. E.. (1) X 12 15 S1 10 S2 X+S1 3 X+S2 4 13 S1S2 X+S1+S2 X S1 X+S2. 2. 3.. S X+S2 X A. S1 2

More information

16_.....E...._.I.v2006

16_.....E...._.I.v2006 55 1 18 Bull. Nara Univ. Educ., Vol. 55, No.1 (Cult. & Soc.), 2006 165 2002 * 18 Collaboration Between a School Athletic Club and a Community Sports Club A Case Study of SOLESTRELLA NARA 2002 Rie TAKAMURA

More information

™…

™… Review The Secret to Healthy Long Life Decrease in Oxidative and Mental Stress My motto is Health is not all. But nothing can be done without health. Health is the most important requisite for all human

More information

840 Geographical Review of Japan 73A-12 835-854 2000 The Mechanism of Household Reproduction in the Fishing Community on Oro Island Masakazu YAMAUCHI (Graduate Student, Tokyo University) This

More information

,

, , The Big Change of Life Insurance Companies in Japan Hisayoshi TAKEDA Although the most important role of the life insurance system is to secure economic life of the insureds and their

More information

2015 8 65 87. J. Osaka Aoyama University. 2015, vol. 8, 65-87. 20 * Recollections of the Pacific War in the eyes of a school kid Hisao NAGAOKA Osaka Aoyama Gakuen Summary Seventy years have passed since

More information

卒業論文はMS-Word により作成して下さい

卒業論文はMS-Word により作成して下さい () 2007 2006 KO-MA KO-MA 2006 6 2007 6 KO-MA KO-MA 256 :117:139 8 40 i 23 50 2008 3 8 NPO 7 KO-MA( KO-MA ) 1) (1945-) KO-MA KO-MA AD 2007 1 29 2007 6 13 20 KO-MA 2006 6 KO-MA KO-MA ii KJ 11 KO-MA iii KO-MA

More information

10 2000 11 11 48 ( ) ( ) ( ) ( ) ( ) ( ) ( ) ( ) ( ) CU-SeeMe NetMeeting Phoenix mini SeeMe Integrated Services Digital Network 64kbps 16kbps 128kbps 384kbps

More information

WE WESB WENB WESNB 428

WE WESB WENB WESNB 428 KH-A-NL Quick Change Stub Tapper Designed for use on KH-A spindle. Spindle Feed: All kinds of feed styles.for spindle feed other than pitch feed, use KH-A-NL in a condition where the tension feature always

More information

206“ƒŁ\”ƒ-fl_“H„¤‰ZŁñ

206“ƒŁ\”ƒ-fl_“H„¤‰ZŁñ 51 206 51 63 2007 GIS 51 1 60 52 2 60 1 52 3 61 2 52 61 3 58 61 4 58 Summary 63 60 20022005 2004 40km 7,10025 2002 2005 19 3 19 GIS 2005GIS 2006 2002 2004 GIS 52 2062007 1 2004 GIS Fig.1 GIS ESRIArcView

More information

IPSJ SIG Technical Report Vol.2016-CE-137 No /12/ e β /α α β β / α A judgment method of difficulty of task for a learner using simple

IPSJ SIG Technical Report Vol.2016-CE-137 No /12/ e β /α α β β / α A judgment method of difficulty of task for a learner using simple 1 2 3 4 5 e β /α α β β / α A judgment method of difficulty of task for a learner using simple electroencephalograph Katsuyuki Umezawa 1 Takashi Ishida 2 Tomohiko Saito 3 Makoto Nakazawa 4 Shigeichi Hirasawa

More information

5 11 3 1....1 2. 5...4 (1)...5...6...7...17...22 (2)...70...71...72...77...82 (3)...85...86...87...92...97 (4)...101...102...103...112...117 (5)...121...122...123...125...128 1. 10 Web Web WG 5 4 5 ²

More information

高 齢 者 のためのスマートフォンを 利 用 した 物 の 保 管 場 Title 所 登 録 検 索 アプリケーション Author(s) 竹 澤, 見 江 子 Citation Issue Date 2012-03-25 URL http://hdl.handle.net/10748/5582 DOI Rights Type Thesis or Dissertation Textversion

More information

はじめに

はじめに IT 1 NPO (IPEC) 55.7 29.5 Web TOEIC Nice to meet you. How are you doing? 1 type (2002 5 )66 15 1 IT Java (IZUMA, Tsuyuki) James Robinson James James James Oh, YOU are Tsuyuki! Finally, huh? What's going

More information

(43) Vol.33, No.6(1977) T-239 MUTUAL DIFFUSION AND CHANGE OF THE FINE STRUCTURE OF WET SPUN ANTI-PILLING ACRYLIC FIBER DURING COAGULATION, DRAWING AND

(43) Vol.33, No.6(1977) T-239 MUTUAL DIFFUSION AND CHANGE OF THE FINE STRUCTURE OF WET SPUN ANTI-PILLING ACRYLIC FIBER DURING COAGULATION, DRAWING AND (43) Vol.33, No.6(1977) T-239 MUTUAL DIFFUSION AND CHANGE OF THE FINE STRUCTURE OF WET SPUN ANTI-PILLING ACRYLIC FIBER DURING COAGULATION, DRAWING AND DRYING PROCESSES* By Hiroshi Aotani, Katsumi Yamazaki

More information

Anl_MonzaJAP.indd

Anl_MonzaJAP.indd ENGLISH A car racing game which encourages tactical thinking for 2 to 6 clever players ages 5 to 99. Author: Jürgen P. K. Grunau Illustrations: Haralds Klavinius Length of the game: 10-15 minutes approx.

More information

総研大文化科学研究第 11 号 (2015)

総研大文化科学研究第 11 号 (2015) 栄 元 総研大文化科学研究第 11 号 (2015) 45 ..... 46 総研大文化科学研究第 11 号 (2015) 栄 租借地都市大連における 満洲日日新聞 の役割に関する一考察 総研大文化科学研究第 11 号 (2015) 47 48 総研大文化科学研究第 11 号 (2015) 栄 租借地都市大連における 満洲日日新聞 の役割に関する一考察 総研大文化科学研究第 11 号 (2015)

More information

きずなプロジェクト-表紙.indd

きずなプロジェクト-表紙.indd P6 P7 P12 P13 P20 P28 P76 P78 P80 P81 P88 P98 P138 P139 P140 P142 P144 P146 P148 #1 SHORT-TERM INVITATION GROUPS 2012 6 10 6 23 2012 7 17 14 2012 7 17 14 2012 7 8 7 21 2012 7 8 7 21 2012 8 7 8 18

More information

Author Workshop 20111124 Henry Cavendish 1731-1810 Biot-Savart 26 (1) (2) (3) (4) (5) (6) Priority Proceeding Impact factor Full paper impact factor Peter Drucker 1890-1971 1903-1989 Title) Abstract

More information

<96DA8E9F82D982A95F944E95F1906C8AD489C88A775F33332E696E6464>

<96DA8E9F82D982A95F944E95F1906C8AD489C88A775F33332E696E6464> 33 27-42 2012 27 4 4 4 1 4 4 4 4 1993:6 1910 1920 1993 1) 28 1987; 2004 2000; 2001 1997; 2000Heath and Cleaver 2003; 2008; 2009a DINKS 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4

More information

06_学術.indd

06_学術.indd Arts and Sciences Development and usefulness evaluation of a remote control pressured pillow for prone position 1 36057 2 45258 2 29275 3 3 4 1 2 3 4 Key words: pressured pillow prone position, stomach

More information

untitled

untitled Ministry of Land, Infrastructure, Transport and Tourism IATA 996 9 96 96 1180 11 11 80 80 27231 27 27231 231 H19.12.5 10 200612 20076 200710 20076 20086 11 20061192008630 12 20088 20045 13 113 20084

More information

FAX-760CLT

FAX-760CLT FAX-760CLT ;; yy 1 f a n l p w s m t v y k u c j 09,. i 09 V X Q ( < N > O P Z R Q: W Y M S T U V 1 2 3 4 2 1 1 2 1 2 j 11 dd e i j i 1 ; 3 oo c o 1 2 3 4 5 6 j12 00 9 i 0 9 i 0 9 i 0 9 i oo

More information

By Kenji Kinoshita, I taru Fukuda, Taiji Ota A Study on the Use of Overseas Construction Materials There are not few things which are superior in the price and the aspect of the quality to a domestic

More information

Level 3 Japanese (90570) 2011

Level 3 Japanese (90570) 2011 90570 905700 3SUPERVISOR S Level 3 Japanese, 2011 90570 Listen to and understand complex spoken Japanese in less familiar contexts 2.00 pm riday Friday 1 November 2011 Credits: Six Check that the National

More information

3_23.dvi

3_23.dvi Vol. 52 No. 3 1234 1244 (Mar. 2011) 1 1 mixi 1 Casual Scheduling Management and Shared System Using Avatar Takashi Yoshino 1 and Takayuki Yamano 1 Conventional scheduling management and shared systems

More information

Bull. of Nippon Sport Sci. Univ. 47 (1) Devising musical expression in teaching methods for elementary music An attempt at shared teaching

Bull. of Nippon Sport Sci. Univ. 47 (1) Devising musical expression in teaching methods for elementary music An attempt at shared teaching Bull. of Nippon Sport Sci. Univ. 47 (1) 45 70 2017 Devising musical expression in teaching methods for elementary music An attempt at shared teaching materials for singing and arrangements for piano accompaniment

More information

f(x) x S (optimal solution) f(x ) (optimal value) f(x) (1) 3 GLPK glpsol -m -d -m glpsol -h -m -d -o -y --simplex ( ) --interior --min --max --check -

f(x) x S (optimal solution) f(x ) (optimal value) f(x) (1) 3 GLPK glpsol -m -d -m glpsol -h -m -d -o -y --simplex ( ) --interior --min --max --check - GLPK by GLPK http://mukun mmg.at.infoseek.co.jp/mmg/glpk/ 17 7 5 : update 1 GLPK GNU Linear Programming Kit GNU LP/MIP ILOG AMPL(A Mathematical Programming Language) 1. 2. 3. 2 (optimization problem) X

More information

Quiz 1 ID#: Name: 1. p, q, r (Let p, q and r be propositions. Determine whether the following equation holds or not by completing the truth table belo

Quiz 1 ID#: Name: 1. p, q, r (Let p, q and r be propositions. Determine whether the following equation holds or not by completing the truth table belo Quiz 1 ID#: Name: 1. p, q, r (Let p, q and r be propositions. Determine whether the following equation holds or not by completing the truth table below.) (p q) r p ( q r). p q r (p q) r p ( q r) x T T

More information

2007-Kanai-paper.dvi

2007-Kanai-paper.dvi 19 Estimation of Sound Source Zone using The Arrival Time Interval 1080351 2008 3 7 S/N 2 2 2 i Abstract Estimation of Sound Source Zone using The Arrival Time Interval Koichiro Kanai The microphone array

More information

浜松医科大学紀要

浜松医科大学紀要 On the Statistical Bias Found in the Horse Racing Data (1) Akio NODA Mathematics Abstract: The purpose of the present paper is to report what type of statistical bias the author has found in the horse

More information

Visual Evaluation of Polka-dot Patterns Yoojin LEE and Nobuko NARUSE * Granduate School of Bunka Women's University, and * Faculty of Fashion Science,

Visual Evaluation of Polka-dot Patterns Yoojin LEE and Nobuko NARUSE * Granduate School of Bunka Women's University, and * Faculty of Fashion Science, Visual Evaluation of Polka-dot Patterns Yoojin LEE and Nobuko NARUSE * Granduate School of Bunka Women's University, and * Faculty of Fashion Science, Bunka Women's University, Shibuya-ku, Tokyo 151-8523

More information

A5 PDF.pwd

A5 PDF.pwd Kwansei Gakuin University Rep Title Author(s) 家 族 にとっての 労 働 法 制 のあり 方 : 子 どもにとっての 親 の 非 正 規 労 働 を 中 心 に Hasegawa, Junko, 長 谷 川, 淳 子 Citation 法 と 政 治, 65(3): 193(825)-236(868) Issue Date 2014-11-30 URL

More information

<303288C991BD946797C797592E696E6464>

<303288C991BD946797C797592E696E6464> 175 71 5 19 / 100 20 20 309 133 72 176 62 3 8 2009 2002 1 2 3 1 8 1 20 1 2 + 0.4952 1 2 http://www.mtwa.or.jp/ h19mokuji.html 20 100 146 0 6,365 359 111 0 38,997 11,689 133,960 36,830 76,177 155,684 18,068

More information

CONTENTS Public relations brochure of Higashikawa November No.745 Higashikawa 215 November 2

CONTENTS Public relations brochure of Higashikawa November No.745 Higashikawa 215 November 2 11 215 November No.745 CONTENTS 2 6 12 17 17 18 2 21 22 23 24 28 3 31 32 Public relations brochure of Higashikawa 11 215 November No.745 Higashikawa 215 November 2 816,18 832,686 8,326,862 196,93 43,573

More information

T rank A max{rank Q[R Q, J] t-rank T [R T, C \ J] J C} 2 ([1, p.138, Theorem 4.2.5]) A = ( ) Q rank A = min{ρ(j) γ(j) J J C} C, (5) ρ(j) = rank Q[R Q,

T rank A max{rank Q[R Q, J] t-rank T [R T, C \ J] J C} 2 ([1, p.138, Theorem 4.2.5]) A = ( ) Q rank A = min{ρ(j) γ(j) J J C} C, (5) ρ(j) = rank Q[R Q, (ver. 4:. 2005-07-27) 1 1.1 (mixed matrix) (layered mixed matrix, LM-matrix) m n A = Q T (2m) (m n) ( ) ( ) Q I m Q à = = (1) T diag [t 1,, t m ] T rank à = m rank A (2) 1.2 [ ] B rank [B C] rank B rank

More information

Fig. 3 Flow diagram of image processing. Black rectangle in the photo indicates the processing area (128 x 32 pixels).

Fig. 3 Flow diagram of image processing. Black rectangle in the photo indicates the processing area (128 x 32 pixels). Fig. 1 The scheme of glottal area as a function of time Fig. 3 Flow diagram of image processing. Black rectangle in the photo indicates the processing area (128 x 32 pixels). Fig, 4 Parametric representation

More information

27 1 NP NP-completeness of Picross 3D without segment-information and that with height of one

27 1 NP NP-completeness of Picross 3D without segment-information and that with height of one 27 1 NP NP-completeness of Picross 3D without segment-information and that with height of one 115282 216 2 26 1 NP.,,., NP, 1 P.,, 1 NP, 3-SAT., NP, i Abstract NP-completeness of Picross 3D without segment-information

More information

A Feasibility Study of Direct-Mapping-Type Parallel Processing Method to Solve Linear Equations in Load Flow Calculations Hiroaki Inayoshi, Non-member

A Feasibility Study of Direct-Mapping-Type Parallel Processing Method to Solve Linear Equations in Load Flow Calculations Hiroaki Inayoshi, Non-member A Feasibility Study of Direct-Mapping-Type Parallel Processing Method to Solve Linear Equations in Load Flow Calculations Hiroaki Inayoshi, Non-member (University of Tsukuba), Yasuharu Ohsawa, Member (Kobe

More information

41 1. 初めに ) The National Theatre of the Deaf 1980

41 1. 初めに ) The National Theatre of the Deaf 1980 Title Author(s) 手話演劇の様相 : 車座の実践と岸田理生の戯曲を通して 岡田, 蕗子 Citation 待兼山論叢. 美学篇. 48 P.41-P.66 Issue Date 2014-12-25 Text Version publisher URL http://hdl.handle.net/11094/56608 DOI rights 41 1. 初めに 1946 2003 1984

More information

FA FA FA FA FA 5 FA FA 9

FA FA FA FA FA 5 FA FA 9 30 29 31 1993 2004 The process of the labor negotiations of Japan Professional Baseball Players Association, 1993 2004 ABE Takeru Graduate School of Social Science, Hitotsubashi University Abstract The

More information

13 HOW TO READ THE WORD

More information

soturon.dvi

soturon.dvi 12 Exploration Method of Various Routes with Genetic Algorithm 1010369 2001 2 5 ( Genetic Algorithm: GA ) GA 2 3 Dijkstra Dijkstra i Abstract Exploration Method of Various Routes with Genetic Algorithm

More information

kut-paper-template.dvi

kut-paper-template.dvi 26 Discrimination of abnormal breath sound by using the features of breath sound 1150313 ,,,,,,,,,,,,, i Abstract Discrimination of abnormal breath sound by using the features of breath sound SATO Ryo

More information

St. Andrew's University NII-Electronic Library Service

St. Andrew's University NII-Electronic Library Service ,, No. F. P. soul F. P. V. D. C. B. C. J. Saleebey, D. 2006 Introduction: Power in the People, Saleebey, D. Ed., The Strengths Perspective in Social Work Practice, 4 th ed, Pearson. 82 84. Rapp, C.

More information

Hiroshi OSAWA A Study of Nutrition and Behavior With Particular Reference to Functional Hypoglycemia In order to understand causes of various kinds of problem behavior in the present time, it is assumed

More information

Literacy 2 Mathematica Mathematica 3 Hiroshi Toyoizumi Univ. of Aizu REFERENCES [1] C.P Williams [2] [3] 1 Literacy 2 Mathematica Ma

Literacy 2 Mathematica Mathematica 3 Hiroshi Toyoizumi Univ. of Aizu REFERENCES [1] C.P Williams [2] [3] 1 Literacy 2 Mathematica Ma Mathematica 3 Hiroshi Toyoizumi Univ. of Aizu toyo@u-aizu.ac.jp REFERENCES [1] C.P Williams [2] [3] 1 Mathematica Mathematica 2 1 PKIPublic Key Infrustructure 3 4 2 5 6 3 RSA 3Ronald RivestAdi ShamirLeonald

More information

II

II No. 19 January 19 2013 19 Regionalism at the 19 th National Assembly Elections Focusing on the Yeongnam and Honam Region Yasurou Mori As the biggest issue of contemporary politics at South Korea, there

More information

国際恋愛で避けるべき7つの失敗と解決策

国際恋愛で避けるべき7つの失敗と解決策 7 http://lovecoachirene.com 1 7! 7! 1 NOT KNOWING WHAT YOU WANT 2 BEING A SUBMISSIVE WOMAN 3 NOT ALLOWING THE MAN TO BE YOUR HERO 4 WAITING FOR HIM TO LEAD 5 NOT SPEAKING YOUR MIND 6 PUTTING HIM ON A PEDESTAL

More information

MRI | 所報 | 分権経営の進展下におけるグループ・マネジメント

MRI  | 所報 | 分権経営の進展下におけるグループ・マネジメント JOURNAL OF MITSUBISHI RESEARCH INSTITUTE No. 35 1999 (03)3277-0003 FAX (03)3277-0520 E-mailprd@mri.co.jp 76 Research Paper Group Management in the Development of Decentralized Management Satoshi Komatsubara,

More information

PowerPoint Presentation

PowerPoint Presentation AI Programming data mining ( Plug in Weka to Eclipse) Review of Identification Tree Run bouncing ball in Weka Run bouncing ball in Eclipse How about color? weight? rubber? Please write down their formulae.

More information